Commit 29f18d79 authored by Robert Griesemer's avatar Robert Griesemer

cmd/compile: fix bug in oconv

Introduced by https://go-review.googlesource.com/#/c/28331/ .

Change-Id: Id75aed6410f06b302d5347f6ca6a2e19c61f6fb6
Reviewed-on: https://go-review.googlesource.com/28779Reviewed-by: default avatarMatthew Dempsky <mdempsky@google.com>
parent 9d6677ca
......@@ -244,7 +244,7 @@ func (o Op) oconv(s fmt.State) {
return
}
fmt.Sprintf("O-%d", o)
fmt.Fprintf(s, "O-%d", o)
}
var classnames = []string{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment