aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/arm/naked-2.c
blob: 92e7db4447d703c54f66b2267514cdc7d01d5cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Verify that __attribute__((naked)) produces a naked function 
   that does not use bx to return. Naked functions could be used
   to implement interrupt routines and must not return using bx.  */
/* { dg-do compile } */
/* { dg-options "-O0" } */
/* Use more arguments than we have argument registers.  */
int __attribute__((naked)) foo(int a, int b, int c, int d, int e, int f)
{
  __asm__ volatile ("@ naked");
}
/* { dg-final { scan-assembler "\t@ naked" } } */
/* { dg-final { scan-assembler-not "\tbx\tlr" } } */