]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr49602.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr49602.c
CommitLineData
15923c25
JJ
1/* PR debug/49602 */
2/* { dg-do compile } */
3/* { dg-options "-g -O2" } */
4
5static void
6foo (int *x)
7{
8}
9
10void
11bar (int *x)
12{
13 int i;
14 for (i = 0; i == 1; ++i)
15 x = 0;
16 foo (x);
17}