diff options
author | Russ Cox <rsc@golang.org> | 2010-01-19 21:34:44 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2010-01-19 21:34:44 -0800 |
commit | a5249b195e6bf557e867fee4839da3e4047f63d1 (patch) | |
tree | 4de4fe19755ca59ece2dea1b42508adef768a321 /src/cmd/ld/go.c | |
parent | 5d55438ca409f52ce9b775542f6ba642ebf31e81 (diff) | |
download | go-a5249b195e6bf557e867fee4839da3e4047f63d1.tar.gz |
cleanup toward eliminating package global name space
* switch to real dot (.) instead of center dot (?) everywhere in object files.
before it was half and half depending on where in the name it appeared.
* in 6c/6a/etc identifiers, ? can still be used but turns into . immediately.
* in export metadata, replace package identifiers with quoted strings
(still package names, not paths).
R=ken2, r
CC=golang-dev
http://codereview.appspot.com/190076
Diffstat (limited to 'src/cmd/ld/go.c')
-rw-r--r-- | src/cmd/ld/go.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/cmd/ld/go.c b/src/cmd/ld/go.c index 9a9346c1f..8f9d198bc 100644 --- a/src/cmd/ld/go.c +++ b/src/cmd/ld/go.c @@ -454,20 +454,20 @@ sweeplist(Prog **first, Prog **last) static char* morename[] = { - "runtime·morestack", - "runtime·morestackx", - - "runtime·morestack00", - "runtime·morestack10", - "runtime·morestack01", - "runtime·morestack11", - - "runtime·morestack8", - "runtime·morestack16", - "runtime·morestack24", - "runtime·morestack32", - "runtime·morestack40", - "runtime·morestack48", + "runtime.morestack", + "runtime.morestackx", + + "runtime.morestack00", + "runtime.morestack10", + "runtime.morestack01", + "runtime.morestack11", + + "runtime.morestack8", + "runtime.morestack16", + "runtime.morestack24", + "runtime.morestack32", + "runtime.morestack40", + "runtime.morestack48", }; void |