2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / pr46215.c
blobcf7b07f20197fc008d0d5a6982b30ed6a8d8439a
1 /* { dg-do compile } */
2 /* { dg-options "-O -fstrict-overflow -fno-tree-ch -ftree-loop-linear" } */
4 extern int y[], x1[], x2[];
5 void
6 foo (long n)
8 int i, j;
9 for (i = 0; i < n; i++)
10 for (j = 0; j < n; j += 2)
11 y[i] = x1[i + j] * x2[i + j];