URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [ptr-arith-1.c] - Rev 297
Go to most recent revision | Compare with Previous | Blame | View Log
char * f (char *s, unsigned int i) { return &s[i + 3 - 1]; } main () { char *str = "abcdefghijkl"; char *x2 = f (str, 12); if (str + 14 != x2) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log