]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/anon-union.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / anon-union.C
diff --git a/gcc/testsuite/g++.dg/other/anon-union.C b/gcc/testsuite/g++.dg/other/anon-union.C
deleted file mode 100644 (file)
index 51598bf..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// { dg-do compile }
-// { dg-options -O2 }
-
-int foo ();
-double bar (void)
-{
-  union
-  {
-    char a[8];
-    double b;
-  };
-
-  a[0] = foo ();
-  a[1] = foo ();
-  a[2] = foo ();
-  a[3] = foo ();
-  a[4] = foo ();
-  a[5] = foo ();
-  a[6] = foo ();
-  a[7] = foo ();
-  return b;
-}