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