(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
msp430/
isr-push-pop-isr-430.c
       1  /* { dg-do compile } */
       2  /* { dg-skip-if "" { *-*-* } { "-mcpu=msp430x*" "-mlarge" } { "" } } */
       3  /* { dg-options "-mcpu=msp430" } */
       4  /* { dg-final { scan-assembler "PUSH\tR11" } } */
       5  /* { dg-final { scan-assembler-not "PUSH\tR10" } } */
       6  
       7  void __attribute__((noinline)) callee (void);
       8  
       9  void __attribute__((interrupt))
      10  isr (void)
      11  {
      12    callee();
      13  }