1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* PR tree-optimization/41661 */ /* { dg-do compile } */ /* { dg-options "-fno-early-inlining" } */ int g; void foo (int x) { g = x; } void bar (double d) { foo (d == 1); } void baz (int a) { bar (1); }