mirror of
https://github.com/golang/go
synced 2024-11-18 02:04:45 -07:00
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/28779 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
9d6677ca7b
commit
29f18d7983
@ -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{
|
||||
|
Loading…
Reference in New Issue
Block a user