]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/loop-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-2.c b/gcc/testsuite/gcc.c-torture/execute/loop-2.c
deleted file mode 100644 (file)
index 3227734..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-int a[2];
-
-f (b)
-{
-  unsigned int i;
-  for (i = 0; i < b; i++)
-    a[i] = i - 2;
-}
-
-main ()
-{
-  a[0] = a[1] = 0;
-  f (2);
-  if (a[0] != -2 || a[1] != -1)
-    abort ();
-  exit (0);
-}