]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/struct-ini-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / struct-ini-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/struct-ini-1.c b/gcc/testsuite/gcc.c-torture/execute/struct-ini-1.c
deleted file mode 100644 (file)
index ab2d178..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-struct S
-{
-  char f1;
-  int f2[2];
-};
-
-struct S object = {'X', 8, 9};
-
-main ()
-{
-  if (object.f1 != 'X' || object.f2[0] != 8 || object.f2[1] != 9)
-    abort ();
-  exit (0);
-}
-