X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F930603-2.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F930603-2.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=8cf06a211390b796784f19fdc2b86b1c0617e652;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/930603-2.c b/gcc/testsuite/gcc.c-torture/execute/930603-2.c deleted file mode 100644 index 8cf06a21..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/930603-2.c +++ /dev/null @@ -1,19 +0,0 @@ -int w[2][2]; - -f () -{ - int i, j; - - for (i = 0; i < 2; i++) - for (j = 0; j < 2; j++) - if (i == j) - w[i][j] = 1; -} - -main () -{ - f (); - if (w[0][0] != 1 || w[1][1] != 1 || w[1][0] != 0 || w[0][1] != 0) - abort (); - exit (0); -}