URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr17656.c] - Rev 688
Compare with Previous | Blame | View Log
int sprintf (char *s, const char *format, ...); int foo(int i, int j) { char *buf, *str; if (i) str = ""; else if (j) str = ""; else return 1; /* We were propagating &""[0] here and not calling fold_stmt with a proper statement pointer. */ sprintf(buf, str); return 0; }