]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/loop-4.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-4.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-4.c b/gcc/testsuite/gcc.c-torture/execute/loop-4.c
deleted file mode 100644 (file)
index b308aa2..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-int
-f()
-{
-  int j = 1;
-  long i;
-  for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
-  return j;
-}
-
-int
-main ()
-{
-  if (f () != 8192)
-    abort ();
-  exit (0);
-}