blob: bba8d29bf47560177c510d39a5dc87f534332ca5 [file] [log] [blame]
/* PR ipa/106061 */
/* { dg-do compile } */
/* { dg-options "-Og" } */
extern void foo (void);
inline void
bar (int x)
{
if (x)
foo ();
}
void
baz (void)
{
bar (0);
}