mirror of
https://github.com/golang/go
synced 2024-11-18 16:54:43 -07:00
cmd/gc: fix print format
Fixes 386 build. TBR=r CC=golang-codereviews https://golang.org/cl/149620043
This commit is contained in:
parent
11e53e46a6
commit
8b7da4de48
@ -809,7 +809,7 @@ dcommontype(Sym *s, int ot, Type *t)
|
||||
for(i=0; i<8; i++)
|
||||
x1 = x1<<8 | gcmask[i];
|
||||
if(widthptr == 4) {
|
||||
p = smprint("gcbits.%#016x", x1);
|
||||
p = smprint("gcbits.%#016llux", x1);
|
||||
} else {
|
||||
x2 = 0;
|
||||
for(i=0; i<8; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user