URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr37617.c] - Rev 297
Compare with Previous | Blame | View Log
typedef union { char *string; double dval; float fval; } yystype; char *f(void) { yystype tok; tok.dval = 0; return (tok.string); } char *f1(void) { yystype tok; tok.fval = 0; return (tok.string); }