URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [pragma-isr-trap_exit.c] - Rev 867
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target sh-*-* sh[1234ble]*-*-*} } */ /* { dg-options "-O" } */ /* This test case will check whether trapa is generated only for isr. */ #pragma interrupt void isr() __attribute__ ((trap_exit (4))); void isr() { } void delay(int a) { } int main() { return 0; } /* { dg-final { scan-assembler-times "trapa\[ \t\]\[ \t\]*#4" 1} } */
Go to most recent revision | Compare with Previous | Blame | View Log