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