aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/lower.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/lower.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/lower.go')
-rw-r--r--src/cmd/compile/internal/ssa/lower.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/ssa/lower.go b/src/cmd/compile/internal/ssa/lower.go
index 768ac124be..a72006ab2f 100644
--- a/src/cmd/compile/internal/ssa/lower.go
+++ b/src/cmd/compile/internal/ssa/lower.go
@@ -13,7 +13,7 @@ func lower(f *Func) {
for _, b := range f.Blocks {
for _, v := range b.Values {
if opcodeTable[v.Op].generic && v.Op != OpFP && v.Op != OpSP && v.Op != OpArg && v.Op != OpCopy && v.Op != OpPhi {
- f.Unimplemented("%s not lowered", v.LongString())
+ f.Unimplementedf("%s not lowered", v.LongString())
}
}
}