summaryrefslogtreecommitdiff
path: root/src/cmd/6l
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-01-19 21:34:44 -0800
committerRuss Cox <rsc@golang.org>2010-01-19 21:34:44 -0800
commita5249b195e6bf557e867fee4839da3e4047f63d1 (patch)
tree4de4fe19755ca59ece2dea1b42508adef768a321 /src/cmd/6l
parent5d55438ca409f52ce9b775542f6ba642ebf31e81 (diff)
downloadgo-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/6l')
-rw-r--r--src/cmd/6l/pass.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/cmd/6l/pass.c b/src/cmd/6l/pass.c
index 4a7f66af3..44dcb0710 100644
--- a/src/cmd/6l/pass.c
+++ b/src/cmd/6l/pass.c
@@ -513,17 +513,17 @@ brloop(Prog *p)
static char*
morename[] =
{
- "runtime·morestack00",
- "runtime·morestack10",
- "runtime·morestack01",
- "runtime·morestack11",
-
- "runtime·morestack8",
- "runtime·morestack16",
- "runtime·morestack24",
- "runtime·morestack32",
- "runtime·morestack40",
- "runtime·morestack48",
+ "runtime.morestack00",
+ "runtime.morestack10",
+ "runtime.morestack01",
+ "runtime.morestack11",
+
+ "runtime.morestack8",
+ "runtime.morestack16",
+ "runtime.morestack24",
+ "runtime.morestack32",
+ "runtime.morestack40",
+ "runtime.morestack48",
};
Prog* pmorestack[nelem(morename)];
Sym* symmorestack[nelem(morename)];