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