blob: 64194795e349dde8a3ead53c799aba528c097050 [file] [log] [blame]
/* Test the interrupt handler with an accumulator. */
/* { dg-do assemble } */
/* { dg-options "-mips64r2" } */
_Accum a;
__attribute__((interrupt))
void foo () {
a = a*a;
}