aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/rt0_amd64_linux.s
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-03-24 13:06:51 -0700
committerRuss Cox <rsc@golang.org>2009-03-24 13:06:51 -0700
commit878822f355a4c1c690be1189f726a129dbf25878 (patch)
tree0c46f57d924a0c5c35277dd9b924662525a90e4a /src/runtime/rt0_amd64_linux.s
parent5a68303a15dadb6c5681f69f6e09a1ff0625883a (diff)
downloadgo-878822f355a4c1c690be1189f726a129dbf25878.tar.xz
move darwin specific code into runtime/darwin/
move darwin-amd64 specific code into runtime/darwin/amd64/ repeat for linux. move rt0 into runtime.a instead of keeping a separate .6 file. 6l seems to have no problem with that. TBR=r OCL=26680 CL=26680
Diffstat (limited to 'src/runtime/rt0_amd64_linux.s')
-rw-r--r--src/runtime/rt0_amd64_linux.s9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/runtime/rt0_amd64_linux.s b/src/runtime/rt0_amd64_linux.s
deleted file mode 100644
index 55be5bceef..0000000000
--- a/src/runtime/rt0_amd64_linux.s
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2009 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Darwin and Linux use the same linkage to main
-
-TEXT _rt0_amd64_linux(SB),7,$-8
- MOVQ $_rt0_amd64(SB), AX
- JMP AX