]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20010114-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010114-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20010114-1.c b/gcc/testsuite/gcc.c-torture/execute/20010114-1.c
deleted file mode 100644 (file)
index ee8295e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Origin: PR c/1540 from Mattias Lampe <lampe@tu-harburg.de>,
-   adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>.
-   GCC 2.95.2 fails, CVS GCC of 2001-01-13 passes.  */
-extern void abort (void);
-extern void exit (int);
-
-int
-main (void)
-{
-  int array1[1] = { 1 };
-  int array2[2][1]= { { 1 }, { 0 } };
-  if (array1[0] != 1)
-    abort ();
-  exit (0);
-}