URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20020709-1.c] - Rev 688
Compare with Previous | Blame | View Log
extern double atof (__const char *__nptr) __attribute__ ((__pure__)); void bar (char *s) { union {double val; unsigned int a, b;} u; u.val = atof (s); }