1
0
mirror of https://github.com/golang/go synced 2024-11-16 23:04:44 -07:00

cmd/internal/obj: stay consistent by defining loop variable outside loop header

Change-Id: Ieb0ae01cf393c4983e809ce95fedeaa854d19a99
GitHub-Last-Rev: 908f756518
GitHub-Pull-Request: golang/go#30004
Reviewed-on: https://go-review.googlesource.com/c/160428
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
This commit is contained in:
Leon Klingele 2019-01-30 17:35:18 +00:00 committed by Brad Fitzpatrick
parent 2889332edf
commit 337a1bde02

View File

@ -252,7 +252,7 @@ func (w *objWriter) writeSymDebug(s *LSym) {
for i := 0; i < len(s.P); i += 16 {
fmt.Fprintf(ctxt.Bso, "\t%#04x", uint(i))
j := i
for j = i; j < i+16 && j < len(s.P); j++ {
for ; j < i+16 && j < len(s.P); j++ {
fmt.Fprintf(ctxt.Bso, " %02x", s.P[j])
}
for ; j < i+16; j++ {