rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr27889.c

14 lines
178 B
C

/* { dg-require-effective-target trampolines } */
void h(void (*)(void));
_Complex int g (void)
{
_Complex int x;
void f(void)
{
x = x + x;
}
h(f);
return x;
}