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/] [compile/] [20030418-1.c] - Rev 299
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR optimization/7675 */ /* Contributed by Volker Reichelt */ /* Verify that we don't put automatic variables in registers too early. */ extern int dummy (int *); void foo(int i) { int j=i; void bar() { int x=j, y=i; } dummy(&i); }
Go to most recent revision | Compare with Previous | Blame | View Log