From a5e1e1599c427013cbbaec5716da4fefbd67a4d1 Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Mon, 3 Nov 2014 17:25:36 -0500 Subject: [PATCH] [dev.power64] test: "fix" live.go test on power64x On power64x, this one line in live.go reports that t is live because of missing optimization passes. This isn't what this test is trying to test, so shuffle bad40 so that it still accomplishes the intent of the test without also depending on optimization. LGTM=rsc R=rsc, dave CC=golang-codereviews https://golang.org/cl/167110043 --- test/live.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/live.go b/test/live.go index f15bb74ba1..f69d0a4c1e 100644 --- a/test/live.go +++ b/test/live.go @@ -614,8 +614,8 @@ func newT40() *T40 { func bad40() { t := newT40() - println() _ = t + println() } func good40() { -- 2.48.1