1168054Sflz/* PR middle-end/37913 */
2168054Sflz
3168266Sgaborvoid foo (void) __attribute__ ((noreturn));
4168266Sgabor
5168266Sgaborstatic int __attribute__ ((noreturn))
6168266Sgaborbar (void)
7168266Sgabor{
8168266Sgabor  foo ();
9168266Sgabor}
10168266Sgabor
11168054Sflzvoid
12168054Sflzbaz (void)
13168064Sflz{
14168064Sflz  int i = bar ();
15168064Sflz}
16168064Sflz