]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr46177.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr46177.c
CommitLineData
1bbd3bde
RG
1/* { dg-do compile } */
2/* { dg-options "-O -fno-tree-copy-prop -ftree-loop-distribution" } */
3
4extern int A[];
5extern int B[];
6
7void
8foo (int j, int c)
9{
10 int i;
11
12 if (c)
13 for (i = 0; i < j; i++)
14 A[i] = B[i] = 0;
15
16 for (i = 0; i < j; i++)
17 A[i] = B[i];
18}