PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / pr46966.c
blob7bc82eee2792328f35755b378a50fea7f05597fe
1 /* PR tree-optimization/46966 */
2 /* { dg-do compile } */
3 /* This test is too big for small targets. */
4 /* { dg-require-effective-target size32plus } */
5 /* { dg-options "-O -floop-nest-optimize -ffast-math -fno-tree-copy-prop -fno-tree-loop-im" } */
7 int a[1000][1000];
9 void foo ()
11 int i, j;
12 for (i = 0; i < 1000; i++)
13 for (j = 0; j < 1000; j++)
14 a[i][j] = 0;