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 | a6736fa4ff27c079aaf5228d23f0b25d6ca423f4 (patch) | |
| tree | 30d0ac42db73a07a4454f84f8a4747954af4e93c /src/cmd/ld | |
| parent | 0365b989a49077eb7917d1c4ba31f5d4b668c144 (diff) | |
| download | go-a6736fa4ff27c079aaf5228d23f0b25d6ca423f4.tar.xz | |
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
https://golang.org/cl/190076
Diffstat (limited to 'src/cmd/ld')
| -rw-r--r-- | src/cmd/ld/go.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/cmd/ld/go.c b/src/cmd/ld/go.c index 9a9346c1f2..8f9d198bc2 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.morestack", + "runtime.morestackx", - "runtime·morestack00", - "runtime·morestack10", - "runtime·morestack01", - "runtime·morestack11", + "runtime.morestack00", + "runtime.morestack10", + "runtime.morestack01", + "runtime.morestack11", - "runtime·morestack8", - "runtime·morestack16", - "runtime·morestack24", - "runtime·morestack32", - "runtime·morestack40", - "runtime·morestack48", + "runtime.morestack8", + "runtime.morestack16", + "runtime.morestack24", + "runtime.morestack32", + "runtime.morestack40", + "runtime.morestack48", }; void |
