rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20030910-1.c

12 lines
189 B
C

/* The gimplifier was getting confused when taking the real or
imaginary component of a complex rvalue. */
void test()
{
__complex double dc;
double d;
d = __real (dc * dc);
}