]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/loop-3.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-3.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-3.c b/gcc/testsuite/gcc.c-torture/execute/loop-3.c
deleted file mode 100644 (file)
index e314a01..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <limits.h>
-
-int n = 0;
-
-g (i)
-{
-  n++;
-}
-
-f (m)
-{
-  int i;
-  i = m;
-  do
-    {
-      g (i * INT_MAX / 2);
-    }
-  while (--i > 0);
-}
-
-main ()
-{
-  f (4);
-  if (n != 4)
-    abort ();
-  exit (0);
-}