]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/local-alloc1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / local-alloc1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/local-alloc1.C b/gcc/testsuite/g++.old-deja/g++.other/local-alloc1.C
deleted file mode 100644 (file)
index 2a31309..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Build don't link:
-// Origin: Jakub Jelinek <jakub@redhat.com>
-// Special g++ Options: -O0 -fpic
-// Skip if target: cris-*-elf* cris-*-aout* mmix-*-*
-
-struct bar {
-  bar() {}
-  double x[3];
-};
-
-static bar y[4];
-
-void foo(int z)
-{
-  bar w;
-  y[z] = w;
-}