From 7fe0389f47838f029f5c85ff7c21e997c351c05e Mon Sep 17 00:00:00 2001 From: Michal Cierniak Date: Wed, 22 Jul 2015 16:16:56 -0700 Subject: [PATCH] go/ssa: update package doc to mention ssautil.CreateProgram Change-Id: I92fb6cf5683c335826d2e84394cc594639e34fe6 Reviewed-on: https://go-review.googlesource.com/12542 Reviewed-by: Dave Cheney --- go/ssa/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/ssa/doc.go b/go/ssa/doc.go index d6660733..2aa04f43 100644 --- a/go/ssa/doc.go +++ b/go/ssa/doc.go @@ -23,7 +23,7 @@ // such as multi-way branch can be reconstructed as needed; see // ssautil.Switches() for an example. // -// To construct an SSA-form program, call ssa.Create on a +// To construct an SSA-form program, call ssautil.CreateProgram on a // loader.Program, a set of type-checked packages created from // parsed Go source files. The resulting ssa.Program contains all the // packages and their members, but SSA code is not created for