aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/print.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2015-06-24 14:03:39 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2015-06-24 21:48:26 +0000
commit37ddc270ca5360ccde000fd373d49b3450ee8e6e (patch)
tree523e69b7ef479ae98504503ce8b754ff25527bf9 /src/cmd/compile/internal/ssa/print.go
parentd779b20cd2f435709cfbbbfa8af88f5e556866d8 (diff)
downloadgo-37ddc270ca5360ccde000fd373d49b3450ee8e6e.tar.gz
go-37ddc270ca5360ccde000fd373d49b3450ee8e6e.zip
[dev.ssa] cmd/compile/ssa: add -f suffix to logging methods
Requested in CL 11380. Change-Id: Icf0d23fb8d383c76272401e363cc9b2169d11403 Reviewed-on: https://go-review.googlesource.com/11450 Reviewed-by: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'src/cmd/compile/internal/ssa/print.go')
-rw-r--r--src/cmd/compile/internal/ssa/print.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/ssa/print.go b/src/cmd/compile/internal/ssa/print.go
index c1b97d2b8f..23fdbca7c4 100644
--- a/src/cmd/compile/internal/ssa/print.go
+++ b/src/cmd/compile/internal/ssa/print.go
@@ -11,7 +11,7 @@ import (
)
func printFunc(f *Func) {
- f.Log("%s", f.String())
+ f.Logf("%s", f.String())
}
func (f *Func) String() string {