bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
24 lines
526 B
C
24 lines
526 B
C
/* { dg-do compile { target sh-*-* sh[1234ble]*-*-*} } */
|
|
/* { dg-options "-O" } */
|
|
/* Check that trapa / interrput_handler attributes can paired in
|
|
either order. */
|
|
void h0() __attribute__ ((trap_exit (4))) __attribute__ ((interrupt_handler));
|
|
void h1() __attribute__ ((interrupt_handler)) __attribute__ ((trap_exit (5)));
|
|
|
|
void foo ()
|
|
{
|
|
}
|
|
|
|
void h0 () {}
|
|
/* { dg-final { scan-assembler "trapa\[ \t\]\[ \t\]*#4"} } */
|
|
/* { dg-final { scan-assembler-times "trapa" 1} } */
|
|
|
|
void delay(int a)
|
|
{
|
|
}
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|