]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/loop-9.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-9.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-9.c b/gcc/testsuite/gcc.c-torture/execute/loop-9.c
deleted file mode 100644 (file)
index 5230575..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Source: Neil Booth, from PR # 115.  */
-
-int false()
-{
-  return 0;
-}
-
-extern void abort (void);
-
-int main (int argc,char *argv[])
-{
-  int count = 0;
-
-  while (false() || count < -123)
-    ++count;
-
-  if (count)
-    abort ();
-
-  return 0;
-}