URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [stack-1.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-O2" } */ /* { dg-final { scan-assembler "addiu\t(\\\$sp,)?\\\$sp,\[1-9\]" } } */ /* { dg-final { scan-assembler "\tlw\t" } } */ /* { dg-final { scan-assembler-not "addiu\t(\\\$sp,)?\\\$sp,\[1-9\].*\tlw\t" } } */ int foo (int y) { volatile int a = y; volatile int *volatile b = &a; return *b; }
Go to most recent revision | Compare with Previous | Blame | View Log