This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / pragma-isr.c
blobde16639ffb8bc30a9b14d2333c77dc804776dd28
1 /* { dg-do compile { target h8300-*-* sh-*-*} } */
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} } */