Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20030209-1.c
blob5845d67b3ca1cc681c806d38093094359cdfdb64
1 #ifdef STACK_SIZE
2 #if STACK_SIZE < 8*100*100
3 #define SKIP
4 #endif
5 #endif
7 #ifndef SKIP
8 double x[100][100];
9 int main ()
11 int i;
13 i = 99;
14 x[i][0] = 42;
15 if (x[99][0] != 42)
16 abort ();
17 exit (0);
19 #else
20 int
21 main ()
23 exit (0);
25 #endif