]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/991202-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991202-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/991202-1.c b/gcc/testsuite/gcc.c-torture/execute/991202-1.c
deleted file mode 100644 (file)
index 502acc7..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-int x, y;
-
-int
-main()
-{
-  x = 2;
-  y = x;
-  do
-    {
-      x = y;
-      y = 2 * y;
-    }
-  while ( ! ((y - x) >= 20));
-  exit (0);
-}
-