* gcc.c-torture/compile/20000120-2.c: Use -fgnu89-inline.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr27889.c
blob4e76caa5663d67b76d0c779aeb9b7f0e05794e1c
1 /* { dg-require-effective-target trampolines } */
3 void h(void (*)(void));
4 _Complex int g (void)
6 _Complex int x;
7 void f(void)
9 x = x + x;
11 h(f);
12 return x;