1 /* PR ipa/106061 */
2 /* { dg-do compile } */
3 /* { dg-options "-Og" } */
4
5 extern void foo (void);
6
7 inline void
8 bar (int x)
9 {
10 if (x)
11 foo ();
12 }
13
14 void
15 baz (void)
16 {
17 bar (0);
18 }