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.target/] [arm/] [naked-1.c] - Rev 313
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O0" } */ /* Check that function arguments aren't assigned and copied to stack slots in naked functions. This ususally happens at -O0 (presumably for better debugging), but is highly undesirable if we haven't created a stack frame. */ void __attribute__((naked)) foo(int n) { __asm__ volatile ("frob r0\n"); } /* { dg-final { scan-assembler "\tfrob r0" } } */ /* { dg-final { scan-assembler-not "\tstr" } } */