blob: 860e239b53256e28be1756648eccdfc391dad51f [file] [log] [blame]
/* { dg-lto-do link } */
/* { dg-lto-options {{-flto -r -nostdlib -O}} } */
extern void baz (void);
static void __attribute__ ((constructor))
bar (void)
{
baz ();
}
void
foo (void)
{
bar ();
}