diff options
author | Russ Cox <rsc@golang.org> | 2009-10-15 23:10:49 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-10-15 23:10:49 -0700 |
commit | 3b4064568e171fcfbd21b97062b7df6610b563e9 (patch) | |
tree | 2b917b03646327a48fef08173fc6522500888d78 /src/cmd/ld/go.c | |
parent | 773efdf0be567f445b0f5eb312f09ac00d8fa5ae (diff) | |
download | golang-3b4064568e171fcfbd21b97062b7df6610b563e9.tar.gz |
rename sys functions to runtime,
because they are in package runtime.
another step to enforcing package boundaries.
R=r
DELTA=732 (114 added, 93 deleted, 525 changed)
OCL=35811
CL=35824
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 ca304525d..aa006a847 100644 --- a/src/cmd/ld/go.c +++ b/src/cmd/ld/go.c @@ -455,20 +455,20 @@ sweeplist(Prog **first, Prog **last) static char* morename[] = { - "sys·morestack", - "sys·morestackx", - - "sys·morestack00", - "sys·morestack10", - "sys·morestack01", - "sys·morestack11", - - "sys·morestack8", - "sys·morestack16", - "sys·morestack24", - "sys·morestack32", - "sys·morestack40", - "sys·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 |