* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / complex-6.c
blob9724bf278635b9845519e12d299b37b8c48abd15
1 /* PR tree-opt/35737 */
2 /* { dg-require-effective-target indirect_jumps } */
4 long buf[10];
6 int foo()
8 __complex__ int i = 0;
10 if (__builtin_setjmp(buf))
12 i = 1;
13 bar();
16 return i == 0;