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/] [20011019-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
extern void exit (int); extern void abort (void); struct { int a; int b[5]; } x; int *y; int foo (void) { return y - x.b; } int main (void) { y = x.b; if (foo ()) abort (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log