1
0
mirror of https://github.com/golang/go synced 2024-11-12 02:50:25 -07:00

cmd/6l: fix printing of frame size in TEXT instruction

R=ken2
CC=golang-dev
https://golang.org/cl/12827043
This commit is contained in:
Russ Cox 2013-08-12 22:04:24 -04:00
parent dbf96addfb
commit 4984e6e9fd

View File

@ -61,6 +61,9 @@ Pconv(Fmt *fp)
p->line, p->as, &p->from, p->from.scale, &p->to);
break;
}
fmtprint(fp, "(%d) %A %D,%lD",
p->line, p->as, &p->from, &p->to);
break;
default:
fmtprint(fp, "(%d) %A %D,%D",
p->line, p->as, &p->from, &p->to);