OSDN Git Service

PR testsuite/52641
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / complex-2.c
1 /* PR 22103 */
2
3 _Complex float f(void);
4 void *a;
5
6 _Complex float g(void)
7 {
8   _Complex float x = f();
9   __imag__ x = 1.0;
10   if (__imag__ x != 1.0)
11     {
12       a = &x;
13     }
14   return x;
15 }
16