From 4984e6e9fdde23a75b0a8c52d56c7a4b5f5d5736 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 12 Aug 2013 22:04:24 -0400 Subject: [PATCH] cmd/6l: fix printing of frame size in TEXT instruction R=ken2 CC=golang-dev https://golang.org/cl/12827043 --- src/cmd/6l/list.c | 3 +++ 1 file changed, 3 insertions(+) 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); -- 2.48.1