]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20030109-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030109-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20030109-1.c b/gcc/testsuite/gcc.c-torture/execute/20030109-1.c
deleted file mode 100644 (file)
index 1bea931..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* PR c/8032 */
-/* Verify that an empty initializer inside a partial
-   parent initializer doesn't confuse GCC.  */
-
-struct X
-{
-  int a;
-  int b;
-  int z[];
-};
-
-struct X x = { .b = 40, .z = {} };
-
-int main ()
-{
-  if (x.b != 40)
-    abort ();
-
-  return 0;
-}