diff options
| author | Russ Cox <rsc@golang.org> | 2013-06-11 16:49:24 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2013-06-11 16:49:24 -0400 |
| commit | 6120ef079948340d6819b8f9a9d526ad4292e26e (patch) | |
| tree | c17a12fed98218f268161f886ea99604efe69242 /src/pkg/runtime/rt0_linux_arm.s | |
| parent | 880d86976454d228d4b2d4cbfd264873a8bcab31 (diff) | |
| download | go-6120ef079948340d6819b8f9a9d526ad4292e26e.tar.xz | |
runtime: rename _rt0_$GOARCH to _rt0_go
There's no reason to use a different name on each architecture,
and doing so makes it impossible for portable code to refer to
the original Go runtime entry point. Rename it _rt0_go everywhere.
This is a global search and replace only.
R=golang-dev, bradfitz, minux.ma
CC=golang-dev
https://golang.org/cl/10196043
Diffstat (limited to 'src/pkg/runtime/rt0_linux_arm.s')
| -rw-r--r-- | src/pkg/runtime/rt0_linux_arm.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/rt0_linux_arm.s b/src/pkg/runtime/rt0_linux_arm.s index a648160cf7..884851cb2d 100644 --- a/src/pkg/runtime/rt0_linux_arm.s +++ b/src/pkg/runtime/rt0_linux_arm.s @@ -41,7 +41,7 @@ TEXT _rt0_arm_linux(SB),7,$-4 SUB $4, R13 // fake a stack frame for runtime·setup_auxv BL runtime·setup_auxv(SB) ADD $4, R13 - B _rt0_arm(SB) + B _rt0_go(SB) TEXT bad_abi<>(SB),7,$-4 // give diagnosis and exit |
