From: Michael Munday Date: Tue, 13 Sep 2016 19:57:52 +0000 (-0400) Subject: test: re-enable phi optimization test X-Git-Tag: go1.8beta1~1345 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7e2b5a102e1c7fcc314b5e58151043530ea1ffe9;p=gostls13.git test: re-enable phi optimization test 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 --- diff --git a/test/phiopt.go b/test/phiopt.go index e57ea94868..98a7b75d10 100644 --- a/test/phiopt.go +++ b/test/phiopt.go @@ -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.