]> Cypherpunks repositories - gostls13.git/commit
all: mv 5a old5a and so on
authorRuss Cox <rsc@golang.org>
Sat, 28 Feb 2015 19:24:28 +0000 (14:24 -0500)
committerRuss Cox <rsc@golang.org>
Mon, 2 Mar 2015 00:14:11 +0000 (00:14 +0000)
commit621d75999f37a5f358c94d6e467b4fe93a377b46
tree0a5709fc1926c3c9ddbc11817e41848b8a328a92
parentaedee3087008fd5493976a3c9e732f2fa5deb883
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>
17 files changed:
src/cmd/dist/build.go
src/cmd/dist/buildtool.go
src/cmd/go/build.go
src/cmd/go/pkg.go
src/cmd/old5a/a.y [moved from src/cmd/5a/a.y with 100% similarity]
src/cmd/old5a/lex.go [moved from src/cmd/5a/lex.go with 100% similarity]
src/cmd/old5a/y.go [moved from src/cmd/5a/y.go with 100% similarity]
src/cmd/old6a/a.y [moved from src/cmd/6a/a.y with 100% similarity]
src/cmd/old6a/lex.go [moved from src/cmd/6a/lex.go with 100% similarity]
src/cmd/old6a/y.go [moved from src/cmd/6a/y.go with 100% similarity]
src/cmd/old8a/a.y [moved from src/cmd/8a/a.y with 100% similarity]
src/cmd/old8a/lex.go [moved from src/cmd/8a/lex.go with 100% similarity]
src/cmd/old8a/y.go [moved from src/cmd/8a/y.go with 100% similarity]
src/cmd/old9a/a.y [moved from src/cmd/9a/a.y with 100% similarity]
src/cmd/old9a/lex.go [moved from src/cmd/9a/lex.go with 100% similarity]
src/cmd/old9a/y.go [moved from src/cmd/9a/y.go with 100% similarity]
src/debug/gosym/pclntab_test.go