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/] [20090219-1.c] - Rev 301
Go to most recent revision | Compare with Previous | Blame | View Log
/* On ARM, BAR used to get a bogus number in E due to stack misalignment. */ extern void abort (void); extern void exit (int); void foo (void) { int f = 0; void bar (int a, int b, int c, int d, int e) { if (e != 0) { f = 1; abort (); } } bar (0, 0, 0, 0, 0); } int main (void) { foo (); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log