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/] [920922-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
unsigned long* f(p)unsigned long*p; { unsigned long a = (*p++) >> 24; return p + a; } main () { unsigned long x = 0x80000000UL; if (f(&x) != &x + 0x81) abort(); exit(0); }
Go to most recent revision | Compare with Previous | Blame | View Log