]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/991216-4.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991216-4.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/991216-4.c b/gcc/testsuite/gcc.c-torture/execute/991216-4.c
deleted file mode 100644 (file)
index 4cc4c8c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Test against a problem with loop reversal.  */
-static void bug(int size, int tries)
-{
-    int i;
-    int num = 0;
-    while (num < size)
-    {
-        for (i = 1; i < tries; i++) num++;
-    }
-}
-
-int main()
-{
-    bug(5, 10);
-    exit (0);
-}