1 /* { dg-lto-do link } */
2 /* { dg-lto-options {{-flto -r -nostdlib -O}} } */
3 
4 extern void baz (void);
5 
6 static void __attribute__ ((constructor))
bar(void)7 bar (void)
8 {
9   baz ();
10 }
11 
12 void
foo(void)13 foo (void)
14 {
15   bar ();
16 }
17