]> Cypherpunks repositories - gostls13.git/commitdiff
test: re-enable phi optimization test
authorMichael Munday <munday@ca.ibm.com>
Tue, 13 Sep 2016 19:57:52 +0000 (15:57 -0400)
committerMichael Munday <munday@ca.ibm.com>
Tue, 13 Sep 2016 20:06:13 +0000 (20:06 +0000)
CL 28978 (6ec993a) accidentally disabled the test (it would only
run if amd64 AND s390x, whereas it should be amd64 OR s390x).

Change-Id: I23c1ad71724ff55f5808d5896b19b62c8ec5af76
Reviewed-on: https://go-review.googlesource.com/28981
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
test/phiopt.go

index e57ea94868b08db277027840be48af7ba39b5711..98a7b75d10911c1fd811e0919af5d70d75d85837 100644 (file)
@@ -1,4 +1,4 @@
-// +build amd64,s390x
+// +build amd64 s390x
 // errorcheck -0 -d=ssa/phiopt/debug=3
 
 // Copyright 2016 The Go Authors. All rights reserved.