URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20070201-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR middle-end/30473 */ extern int sprintf (char *, const char *, ...); extern void abort (void); char * foo (char *buf, char *p) { sprintf (buf, "abcde", p++); return p; } int main (void) { char buf[6]; if (foo (buf, &buf[2]) != &buf[3]) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log