]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/mregtst.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / mregtst.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/mregtst.c b/gcc/testsuite/gcc.c-torture/unsorted/mregtst.c
deleted file mode 100644 (file)
index b6bb6c2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-foo (a, p)
-     int *p;
-{
-  int old, new, i;
-
-  old = 0;
-  for (i = 1; i < 100; i++)
-    {
-      new = p[i];
-      if (new < old)
-       a++;
-      old = new;
-      if (old == 0)
-       return 0;
-    }
-  return a;
-}