aboutsummaryrefslogtreecommitdiff
path: root/test/sliceopt.go
diff options
context:
space:
mode:
authorMichael Munday <munday@ca.ibm.com>2016-09-12 14:50:10 -0400
committerMichael Munday <munday@ca.ibm.com>2016-09-13 19:39:38 +0000
commit6ec993adc3373d31392b301ebe0c376b02d68051 (patch)
treeab8e5c5afe559521792464976e0dc8f0101d9779 /test/sliceopt.go
parentb7e53038b8abb4d82cf25cb844395af602150a29 (diff)
downloadgo-6ec993adc3373d31392b301ebe0c376b02d68051.tar.gz
go-6ec993adc3373d31392b301ebe0c376b02d68051.zip
cmd/compile: add SSA backend for s390x and enable by default
The new SSA backend modifies the ABI slightly: R0 is now a usable general purpose register. Fixes #16677. Change-Id: I367435ce921e0c7e79e021c80cf8ef5d1d1466cf Reviewed-on: https://go-review.googlesource.com/28978 Run-TryBot: Michael Munday <munday@ca.ibm.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'test/sliceopt.go')
-rw-r--r--test/sliceopt.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sliceopt.go b/test/sliceopt.go
index 4c38541b03..2fb1b3118c 100644
--- a/test/sliceopt.go
+++ b/test/sliceopt.go
@@ -1,4 +1,4 @@
-// +build !amd64,!arm,!amd64p32,!386,!arm64,!ppc64le,!mips64,!mips64le
+// +build !amd64,!arm,!amd64p32,!386,!arm64,!ppc64le,!mips64,!mips64le,!s390x
// errorcheck -0 -d=append,slice
// Copyright 2015 The Go Authors. All rights reserved.