aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug385_32.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2013-12-12 17:13:46 -0800
committerIan Lance Taylor <iant@golang.org>2013-12-12 17:13:46 -0800
commit3ddd2eaebc6bfb3ef05612a354cbd4273378d18b (patch)
treeb573e1bdc13016fc813c8b64646fcdc3f5377b8d /test/fixedbugs/bug385_32.go
parentd12b08d228aff8b62d6a90297689856bf67890f7 (diff)
downloadgo-3ddd2eaebc6bfb3ef05612a354cbd4273378d18b.tar.xz
test: disable large type/stack frame tests for gccgo
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/40370052
Diffstat (limited to 'test/fixedbugs/bug385_32.go')
-rw-r--r--test/fixedbugs/bug385_32.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug385_32.go b/test/fixedbugs/bug385_32.go
index 724ed93262..4c3cad7798 100644
--- a/test/fixedbugs/bug385_32.go
+++ b/test/fixedbugs/bug385_32.go
@@ -9,7 +9,7 @@
package main
func main() {
- var arr [1000200030]int // ERROR "type .* too large"
+ var arr [1000200030]int // GC_ERROR "type .* too large"
arr_bkup := arr
_ = arr_bkup
}