diff options
| author | Keith Randall <khr@golang.org> | 2020-10-01 14:49:33 -0700 |
|---|---|---|
| committer | Keith Randall <khr@golang.org> | 2020-10-02 00:00:51 +0000 |
| commit | fe2cfb74ba6352990f5b41260b99e80f78e4a90a (patch) | |
| tree | eb0fe4e5c26627df259f080b14c2dc00750af8b2 /src/cmd/asm | |
| parent | 41df0e22184a0fcfb1e67e994c993239e9c2efc7 (diff) | |
| download | go-fe2cfb74ba6352990f5b41260b99e80f78e4a90a.tar.xz | |
all: drop 387 support
My last 387 CL. So sad ... ... ... ... not!
Fixes #40255
Change-Id: I8d4ddb744b234b8adc735db2f7c3c7b6d8bbdfa4
Reviewed-on: https://go-review.googlesource.com/c/go/+/258957
Trust: Keith Randall <khr@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'src/cmd/asm')
| -rw-r--r-- | src/cmd/asm/internal/asm/endtoend_test.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/cmd/asm/internal/asm/endtoend_test.go b/src/cmd/asm/internal/asm/endtoend_test.go index 0759b7d10f..15202dc5dc 100644 --- a/src/cmd/asm/internal/asm/endtoend_test.go +++ b/src/cmd/asm/internal/asm/endtoend_test.go @@ -353,12 +353,7 @@ func testErrors(t *testing.T, goarch, file string) { } func Test386EndToEnd(t *testing.T) { - defer func(old string) { objabi.GO386 = old }(objabi.GO386) - for _, go386 := range []string{"387", "sse2"} { - t.Logf("GO386=%v", go386) - objabi.GO386 = go386 - testEndToEnd(t, "386", "386") - } + testEndToEnd(t, "386", "386") } func TestARMEndToEnd(t *testing.T) { |
