]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/990525-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990525-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/990525-2.c b/gcc/testsuite/gcc.c-torture/execute/990525-2.c
deleted file mode 100644 (file)
index 7497852..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-typedef struct {
-    int v[4];
-} Test1;
-
-Test1 func2();
-
-int func1()
-{
-    Test1 test;
-    test = func2();
-
-    if (test.v[0] != 10)
-      abort ();
-    if (test.v[1] != 20)
-      abort ();
-    if (test.v[2] != 30)
-      abort ();
-    if (test.v[3] != 40)
-      abort ();
-}
-
-Test1 func2()
-{
-    Test1 tmp;
-    tmp.v[0] = 10;
-    tmp.v[1] = 20;
-    tmp.v[2] = 30;
-    tmp.v[3] = 40;
-    return tmp;
-}
-
-
-int main()
-{
-    func1();
-    exit (0);
-}
-
-