aboutsummaryrefslogtreecommitdiff
path: root/src/liblink/objfilego.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-01-21 12:27:36 -0500
committerRuss Cox <rsc@golang.org>2015-01-21 19:06:31 +0000
commit24dfaba6d1dafffe55987ded672c73a9b6087e79 (patch)
tree73bddfb0127cfa8fab6a2161597018d2d1d4d6a1 /src/liblink/objfilego.c
parenta8e5e803e68c11fe812fa5d2d1ecefc0ffa73ef7 (diff)
downloadgo-24dfaba6d1dafffe55987ded672c73a9b6087e79.tar.xz
[dev.cc] cmd/internal/obj: reconvert from liblink
Using rsc.io/c2go repo revision 60c9302. - Export a few symbols needed by assemblers. - Implement Getgoroot etc directly, and add Getgoversion. - Removes dependency on Go 1.4 go/build. - Change magic history name <no name> to <pop> The <pop> change requires adjustment to the liblink serializer. Change-Id: If5fb52ac9e91d50805263070b3fc5cc05d8b7632 Reviewed-on: https://go-review.googlesource.com/3141 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/liblink/objfilego.c')
-rw-r--r--src/liblink/objfilego.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblink/objfilego.c b/src/liblink/objfilego.c
index 4d0336e912..0dd1a6ef09 100644
--- a/src/liblink/objfilego.c
+++ b/src/liblink/objfilego.c
@@ -328,7 +328,7 @@ printhist(Link *ctxt, Biobuf *bw, Hist *h)
printptr(ctxt, bw, h);
printptr(ctxt, bw, h->link);
if(h->name == nil)
- printstr(ctxt, bw, "<no name>");
+ printstr(ctxt, bw, "<pop>");
else
printstr(ctxt, bw, h->name);
printint(ctxt, bw, h->line);