2008-03-21 Janne Blomqvist <jb@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / pragma-isr.c
blobe7565a682454d5b5ca9867b30cfea0ea1084ceaa
1 /* { dg-do compile { target h8300-*-* sh-*-* sh[1234ble]*-*-* } } */
2 /* { dg-options "-O3" } */
3 /* Test case will check whether rte is generated for two ISRs*/
4 extern void foo();
5 #pragma interrupt
6 void isr1(void)
8 foo();
11 #pragma interrupt
12 void isr2(void)
14 foo();
17 /* { dg-final { scan-assembler-times "rte" 2} } */