1 /* PR ipa/84425 */ 2 3 void bar (int); 4 5 void foo(int x)6 foo (int x) 7 { 8 if (x < 5) 9 bar (x); 10 } 11 12 __attribute__((optimize(0))) void bar(int x)13 bar (int x) 14 { 15 if (x > 10) 16 foo (x); 17 } 18