1 /* PR tree-opt/35737 */
2 /* { dg-require-effective-target indirect_jumps } */
3 
4 long buf[10];
5 
foo()6 int foo()
7 {
8   __complex__ int i = 0;
9 
10   if (__builtin_setjmp(buf))
11   {
12     i = 1;
13     bar();
14   }
15 
16   return i == 0;
17 }
18 
19