* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / complex-2.c
blob4462eee45748f7911ef02714a76f4826784644be
1 /* PR 22103 */
3 _Complex float f(void);
4 void *a;
6 _Complex float g(void)
8 _Complex float x = f();
9 __imag__ x = 1.0;
10 if (__imag__ x != 1.0)
12 a = &x;
14 return x;