From: Keith Randall Date: Fri, 16 Sep 2016 19:11:33 +0000 (-0700) Subject: cmd/compile: turn live variable test off for ppc X-Git-Tag: go1.8beta1~1268 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c199c76cb47f065f9f513bc6f74f58be0484765d;p=gostls13.git cmd/compile: turn live variable test off for ppc ppc64 has an extraneous variable live in some situations. We need a better tighten pass to get rid of this extra variable. I'm working on it, but fix the test in the meantime. Fixes build for ppc64. Change-Id: I1efb9ccb234a64f2a1c228abd2b3195f67fbeb41 Reviewed-on: https://go-review.googlesource.com/29353 Reviewed-by: David Chase --- diff --git a/test/live.go b/test/live.go index 373b4e9c2f..dabf82e8f2 100644 --- a/test/live.go +++ b/test/live.go @@ -1,4 +1,6 @@ // errorcheck -0 -l -live -wb=0 +// +build !ppc64,!ppc64le +// ppc64 needs a better tighten pass to make f18 pass // Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style