]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr44393.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr44393.c
CommitLineData
2706a615
RG
1/* { dg-do compile } */
2/* { dg-options "-Os -ftree-loop-distribution" } */
3
4int i;
5void foo ()
6{
7 int **pp = 0, *p = 0;
8 while (--i)
9 {
10 *p++ = 0;
11 *pp++ = p;
12 }
13 i = *p;
14}
15