]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr50763.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr50763.c
CommitLineData
19b6a33d 1/* { dg-do compile } */
7fd9012e 2/* { dg-options "-O2 -ftree-tail-merge -fno-tree-dominator-opts" } */
19b6a33d
TV
3
4int bar (int i);
5
6void
7foo (int c, int d)
8{
9 if (bar (c))
10 bar (c);
11 d = 33;
12 while (c == d);
13}