]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000224-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000224-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000224-1.c b/gcc/testsuite/gcc.c-torture/execute/20000224-1.c
deleted file mode 100644 (file)
index 295cc47..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-int loop_1 = 100;
-int loop_2 = 7;
-int flag = 0;
-
-int test (void)
-{
-    int i;
-    int counter  = 0;
-
-    while (loop_1 > counter) {
-        if (flag & 1) {
-            for (i = 0; i < loop_2; i++) {
-                counter++;
-            }
-        }
-        flag++;
-    }
-    return 1;
-}
-
-int main()
-{
-    if (test () != 1)
-      abort ();
-    
-    exit (0);
-}
-