From: Russ Cox Date: Tue, 13 Aug 2013 02:04:24 +0000 (-0400) Subject: cmd/6l: fix printing of frame size in TEXT instruction X-Git-Tag: go1.2rc2~643 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4984e6e9fdde23a75b0a8c52d56c7a4b5f5d5736;p=gostls13.git cmd/6l: fix printing of frame size in TEXT instruction R=ken2 CC=golang-dev https://golang.org/cl/12827043 --- diff --git a/src/cmd/6l/list.c b/src/cmd/6l/list.c index 05b23049a0..aaf45c4dd7 100644 --- a/src/cmd/6l/list.c +++ b/src/cmd/6l/list.c @@ -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);