]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/6l: fix printing of frame size in TEXT instruction
authorRuss Cox <rsc@golang.org>
Tue, 13 Aug 2013 02:04:24 +0000 (22:04 -0400)
committerRuss Cox <rsc@golang.org>
Tue, 13 Aug 2013 02:04:24 +0000 (22:04 -0400)
R=ken2
CC=golang-dev
https://golang.org/cl/12827043

src/cmd/6l/list.c

index 05b23049a0d76116d2c8ee734d2c65b8d4c66d4b..aaf45c4dd766845fe2fee7d4bd524b3123c60861 100644 (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);