]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20011008-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20011008-2.c
diff --git a/gcc/testsuite/gcc.dg/20011008-2.c b/gcc/testsuite/gcc.dg/20011008-2.c
deleted file mode 100644 (file)
index 5937bcb..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do run } */
-/* { dg-options "-O0" } */
-
-struct { union {int x; int y;}; int q; } b;
-union { struct {int x;}; int q; } e;
-
-main()
-{
-  b.y = 10;
-  b.x = 15;
-  if (b.y != 15)
-    abort();
-
-  e.x = 10;
-  e.q = 15;
-  if (e.x != 15)
-    abort();
-
-  exit(0);
-}