(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arc/
firq-5.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target archs }*/
       3  /* { dg-options "-O2 -mrgf-banked-regs=16" } */
       4  
       5  /* Check if blink is pushed on the stack or not.   */
       6  
       7  extern void bar (void);
       8  
       9  void __attribute__ ((interrupt("firq")))
      10  handler1 (void)
      11  {
      12    bar ();
      13  }
      14  /* { dg-final { scan-assembler-not "push.*blink" } } */
      15  /* { dg-final { scan-assembler-not "pop.*blink" } } */