rt_gccstream/gcc/testsuite/gcc.c-torture/compile/complex-6.c

18 lines
158 B
C

/* PR tree-opt/35737 */
long buf[10];
int foo()
{
__complex__ int i = 0;
if (__builtin_setjmp(buf))
{
i = 1;
bar();
}
return i == 0;
}