2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[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;