1 /* { dg-do compile } */
2 /* { dg-options "-Wno-pedantic" } */
3 
4 void bar (void);
5 
6 void
foo(int x)7 foo (int x)
8 {
9   __builtin_unwind_init ();
10   __builtin_eh_return (x, bar);
11 }
12