PR ipa/84425
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr84425.c
blob5d3d325aa2324f1fc306421cb50054d4c1bd24c1
1 /* PR ipa/84425 */
3 void bar (int);
5 void
6 foo (int x)
8 if (x < 5)
9 bar (x);
12 __attribute__((optimize(0))) void
13 bar (int x)
15 if (x > 10)
16 foo (x);