]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000801-3.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000801-3.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000801-3.c b/gcc/testsuite/gcc.c-torture/execute/20000801-3.c
deleted file mode 100644 (file)
index 8d47a81..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* Origin: PR c/92 from Simon Marlow <t-simonm@microsoft.com>, adapted
-   to a testcase by Joseph Myers <jsm28@cam.ac.uk>.
-*/
-
-typedef struct { } empty;
-
-typedef struct {
-  int i;
-  empty e;
-  int i2;
-} st;
-
-st s = { .i = 0, .i2 = 1 };
-
-extern void abort (void);
-
-int
-main (void)
-{
-  if (s.i2 == 1)
-    exit (0);
-  else
-    abort ();
-}