diff options
| author | Austin Clements <austin@google.com> | 2014-12-15 10:51:31 -0500 |
|---|---|---|
| committer | Austin Clements <austin@google.com> | 2014-12-22 19:25:52 +0000 |
| commit | ab9ec2e4014efce68da1e57b3def4f82db00c671 (patch) | |
| tree | ce57f88acad417cee58ad0537904c90738d77a09 /src/liblink | |
| parent | 5f029deb3950398609d4d3927310dc6ea95e2943 (diff) | |
| download | go-ab9ec2e4014efce68da1e57b3def4f82db00c671.tar.xz | |
liblink: remove class from %#D formatter on 6l
This was a copy-paste error from 9l. Besides incorrectly referring to
cnames9, 6l doesn't even use a->class, so simply remove this.
Fixes #9320
Change-Id: I0e3440c9dae1c3408eb795b3645f9f1dd8f50aed
Reviewed-on: https://go-review.googlesource.com/1516
Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/liblink')
| -rw-r--r-- | src/liblink/list6.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/liblink/list6.c b/src/liblink/list6.c index ff22273c4a..a9eace4cdc 100644 --- a/src/liblink/list6.c +++ b/src/liblink/list6.c @@ -155,8 +155,6 @@ Dconv(Fmt *fp) else s += sprint(s, "%d ", i); s += sprint(s, "offset=%lld etype=%E width=%lld", a->offset, a->etype, a->width); - if(a->class != 0) - s += sprint(s, " class=%s", cnames9[(int)a->class]); if(a->sym != nil) s += sprint(s, " sym=%s", a->sym->name); if(a->type == D_BRANCH && a->u.branch != nil) |
