blob: 1df1bde0703dd5e273b4eb084360259e916b38ce [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-fkeep-inline-functions -O" } */
static inline __attribute__ ((const))
void baz (int i)
{
}
static __attribute__ ((always_inline))
inline __attribute__ ((flatten))
void bar (void)
{
baz (0);
}
void
foo (void)
{
bar ();
}