diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/execute/930603-2.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/execute/930603-2.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/execute/930603-2.c b/gcc_arm/testsuite/gcc.c-torture/execute/930603-2.c deleted file mode 100755 index 8cf06a2..0000000 --- a/gcc_arm/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); -} |