aboutsummaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2015-02-28 14:24:28 -0500
committerRuss Cox <rsc@golang.org>2015-03-02 00:14:11 +0000
commit621d75999f37a5f358c94d6e467b4fe93a377b46 (patch)
tree0a5709fc1926c3c9ddbc11817e41848b8a328a92 /src/debug
parentaedee3087008fd5493976a3c9e732f2fa5deb883 (diff)
downloadgo-621d75999f37a5f358c94d6e467b4fe93a377b46.tar.xz
all: mv 5a old5a and so on
This CL will break any uses of 'go tool 5a' etc. That is intentional. Code that invokes an assembler directly should be updated to use go tool asm. We plan to keep the old5a around for bit-for-bit verification during the release testing phase, but we plan to remove those tools for the actual release. Renaming the directory now makes sure that lingering references to 'go tool 5a' will be caught, changed to use asm, and tested during the release evaluation. Change-Id: I98748a7ddb34cc7f1b151c2ef421d3656821f5c2 Reviewed-on: https://go-review.googlesource.com/6366 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/gosym/pclntab_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/gosym/pclntab_test.go b/src/debug/gosym/pclntab_test.go
index 35502e8c39..1415fac276 100644
--- a/src/debug/gosym/pclntab_test.go
+++ b/src/debug/gosym/pclntab_test.go
@@ -49,7 +49,7 @@ func dotest(self bool) bool {
// the resulting binary looks like it was built from pclinetest.s,
// but we have renamed it to keep it away from the go tool.
pclinetestBinary = filepath.Join(pclineTempDir, "pclinetest")
- command := fmt.Sprintf("go tool 6a -o %s.6 pclinetest.asm && go tool 6l -H linux -E main -o %s %s.6",
+ command := fmt.Sprintf("go tool asm -o %s.6 pclinetest.asm && go tool 6l -H linux -E main -o %s %s.6",
pclinetestBinary, pclinetestBinary, pclinetestBinary)
cmd := exec.Command("sh", "-c", command)
cmd.Stdout = os.Stdout