]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000422-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000422-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000422-1.c b/gcc/testsuite/gcc.c-torture/execute/20000422-1.c
deleted file mode 100644 (file)
index f94d4c5..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-int ops[13] =
-{
-  11, 12, 46, 3, 2, 2, 3, 2, 1, 3, 2, 1, 2
-};
-
-int correct[13] = 
-{
-  46, 12, 11, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1
-};
-
-int num = 13;
-
-int main()
-{
-  int i;
-
-  for (i = 0; i < num; i++)
-    {
-      int j;
-
-      for (j = num - 1; j > i; j--)
-        {
-          if (ops[j-1] < ops[j])
-            {
-              int op = ops[j];
-              ops[j] = ops[j-1];
-              ops[j-1] = op;
-            }
-        }
-    }
-
-
-  for (i = 0; i < num; i++)
-    if (ops[i] != correct[i])
-      abort ();
-
-  exit (0);
-}
-