1 /* PR other/89342 */
2 /* { dg-do compile } */
3 /* { dg-options "-O0" } */
4
5 __attribute__((optimize("Ofast")))
6 void foo (void)
7 {
8 __attribute__((optimize("no-inline")))
9 void bar (void) {}
10 bar ();
11 }