URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20030910-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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); }
Go to most recent revision | Compare with Previous | Blame | View Log