OSDN Git Service

* gcc.c-torture/compile/pr11832.c: XFAIL for mips and powerpc-linux,
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr27889.c
1 /* { dg-require-effective-target trampolines } */
2
3 void h(void (*)(void));
4 _Complex int g (void)
5 {
6   _Complex int x;
7   void f(void)
8   {
9      x = x + x;
10   }
11   h(f);
12   return x;
13 }