]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/990525-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990525-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/990525-1.c b/gcc/testsuite/gcc.c-torture/execute/990525-1.c
deleted file mode 100644 (file)
index 39b65d1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-struct blah {
-    int m1, m2;
-};
-
-void die(struct blah arg)
-{
-    int i ;
-    struct blah buf[1];
-
-    for (i = 0; i < 1 ; buf[i++] = arg)
-        ;
-    if (buf[0].m1 != 1) {
-        abort ();
-    }
-}
-
-int main()
-{
-    struct blah s = { 1, 2 };
-
-    die(s);
-    exit (0);
-}