(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
mips/
interrupt_handler-5.c
       1  /* Test the interrupt handler with an accumulator.  */
       2  /* { dg-do assemble } */
       3  /* { dg-options "-mips64r2" } */
       4  _Accum a;
       5  __attribute__((interrupt))
       6  void foo () {
       7    a = a*a;
       8  }