blob: 7a9de5fc005d2281c81dd9a5e6eb85028685b406 [file] [log] [blame]
/* The gimplifier was inserting unwanted temporaries for REALPART_EXPR
nodes. These need to be treated like a COMPONENT_REF so their address can
be taken. */
int main()
{
__complex double dc;
double *dp = &(__real dc);
*dp = 3.14;
if ((__real dc) != 3.14) abort();
exit (0);
}