URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [951204-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
f (char *x) { *x = 'x'; } main () { int i; char x = '\0'; for (i = 0; i < 100; ++i) { f (&x); if (*(const char *) &x != 'x') abort (); } exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log