From 2a141dedc4bb7b33f5caee6e7b185dfbd20c92bc Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 21 May 2015 13:28:06 -0400 Subject: cmd/link: move to cmd/newlink In preparation for making the current linker cmd/link. If cmd/newlink is ever completed, it can be moved back. See golang-dev thread titled "go tool compile, etc" for background. Change-Id: I4029580f470038240c5181a37ea4202ba971f9ef Reviewed-on: https://go-review.googlesource.com/10286 Reviewed-by: Rob Pike --- src/cmd/link/testdata/hello.s | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/cmd/link/testdata/hello.s (limited to 'src/cmd/link/testdata/hello.s') diff --git a/src/cmd/link/testdata/hello.s b/src/cmd/link/testdata/hello.s deleted file mode 100644 index 32ed675033..0000000000 --- a/src/cmd/link/testdata/hello.s +++ /dev/null @@ -1,15 +0,0 @@ -TEXT _rt0_go(SB),7,$0 - MOVL $1, DI - MOVL $hello<>(SB), SI - MOVL $12, DX - MOVL $0x2000004, AX - SYSCALL - MOVL $0, DI - MOVL $0x2000001, AX - SYSCALL - RET - -DATA hello<>+0(SB)/4, $"hell" -DATA hello<>+4(SB)/4, $"o wo" -DATA hello<>+8(SB)/4, $"rld\n" -GLOBL hello<>(SB), $12 -- cgit v1.3-5-g9baa