PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr50763.c
blob102056f1dcb261ec211a6c81f40c21e3c95b82ff
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-tail-merge -fno-tree-dominator-opts" } */
4 int bar (int i);
6 void
7 foo (int c, int d)
9 if (bar (c))
10 bar (c);
11 d = 33;
12 while (c == d);