X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20010114-1.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20010114-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=ee8295e3513e599a9b53d442033b6d6e373ee12b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git 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 index ee8295e3..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/20010114-1.c +++ /dev/null @@ -1,15 +0,0 @@ -/* Origin: PR c/1540 from Mattias Lampe , - adapted to a testcase by Joseph Myers . - 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); -}