aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Cierniak <cierniak@google.com>2015-07-22 16:16:56 -0700
committerDave Cheney <dave@cheney.net>2015-07-27 18:48:45 +0000
commit7fe0389f47838f029f5c85ff7c21e997c351c05e (patch)
treebefa840383fb562bf3152f4ad7cd9cd52fc1c972
parent69f53eb622e0f41d0e91debd71d6694148b52a30 (diff)
downloadtools-7fe0389f47838f029f5c85ff7c21e997c351c05e.tar.gz
go/ssa: update package doc to mention ssautil.CreateProgram
Change-Id: I92fb6cf5683c335826d2e84394cc594639e34fe6 Reviewed-on: https://go-review.googlesource.com/12542 Reviewed-by: Dave Cheney <dave@cheney.net>
-rw-r--r--go/ssa/doc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/ssa/doc.go b/go/ssa/doc.go
index d666073..2aa04f4 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