]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/consec.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / consec.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/consec.c b/gcc/testsuite/gcc.c-torture/unsorted/consec.c
deleted file mode 100644 (file)
index fd76cd2..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-int glob;
-
-conseq (a, b, c, d)
-     int *a, *b;
-{
-  a[2] = d;
-  a[1] = c;
-  sequence (a, b, c, d);
-  sequence (d, c, b, a);
-  b[0] = 0;
-  b[1] = 123;
-  a[0] = 321;
-  a[1] = 0;
-  sequence (111, 0, 0, 222, 0, 333);
-  ((int *)glob)[2] = c;
-  ((int *)glob)[3] = d;
-}