PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030910-1.c
blob6c849134a9b008d5758e85da1bf62fe1d4153063
1 /* The gimplifier was inserting unwanted temporaries for REALPART_EXPR
2 nodes. These need to be treated like a COMPONENT_REF so their address can
3 be taken. */
5 int main()
7 __complex double dc;
8 double *dp = &(__real dc);
9 *dp = 3.14;
10 if ((__real dc) != 3.14) abort();
11 exit (0);