aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/export_test.go
diff options
context:
space:
mode:
authorIlya Tocar <ilya.tocar@intel.com>2018-03-14 21:02:20 +0000
committerIlya Tocar <ilya.tocar@intel.com>2018-03-14 21:21:23 +0000
commit644d14ea0f3d99863a033f66543ce0346bf20831 (patch)
tree8f4d1f31ef8ee0701b8f769dd453dc6046e89865 /src/cmd/compile/internal/ssa/export_test.go
parent44e65f2c94bbae463314382fd77ce690c81b413e (diff)
downloadgo-644d14ea0f3d99863a033f66543ce0346bf20831.tar.gz
go-644d14ea0f3d99863a033f66543ce0346bf20831.zip
Revert "cmd/compile: implement CMOV on amd64"
This reverts commit 080187f4f72bd6594e3c2efc35cf51bf61378552. It broke build of golang.org/x/exp/shiny/iconvg See issue 24395 for details Change-Id: Ifd6134f6214e6cee40bd3c63c32941d5fc96ae8b Reviewed-on: https://go-review.googlesource.com/100755 Run-TryBot: Ilya Tocar <ilya.tocar@intel.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/ssa/export_test.go')
-rw-r--r--src/cmd/compile/internal/ssa/export_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/compile/internal/ssa/export_test.go b/src/cmd/compile/internal/ssa/export_test.go
index 8d3bd74fa5..1fe0bbe6ae 100644
--- a/src/cmd/compile/internal/ssa/export_test.go
+++ b/src/cmd/compile/internal/ssa/export_test.go
@@ -7,7 +7,6 @@ package ssa
import (
"cmd/compile/internal/types"
"cmd/internal/obj"
- "cmd/internal/obj/arm64"
"cmd/internal/obj/s390x"
"cmd/internal/obj/x86"
"cmd/internal/src"
@@ -23,7 +22,6 @@ var Copyelim = copyelim
var testCtxts = map[string]*obj.Link{
"amd64": obj.Linknew(&x86.Linkamd64),
"s390x": obj.Linknew(&s390x.Links390x),
- "arm64": obj.Linknew(&arm64.Linkarm64),
}
func testConfig(tb testing.TB) *Conf { return testConfigArch(tb, "amd64") }