1 // PR ipa/69241
2 // { dg-do compile }
3 // { dg-options "-O2" }
4 
5 struct R { int x[100]; };
6 __attribute__ ((noreturn)) R bar ();
7 
8 void
foo()9 foo ()
10 {
11   bar ();
12 }
13