Move from root of repository to intented place.

From-SVN: r90988
This commit is contained in:
Nitin Yewale 2004-11-21 22:54:00 +00:00 committed by Andreas Schwab
parent 763ea90493
commit d23eb34146

View File

@ -0,0 +1,17 @@
/* { dg-do compile { target h8300-*-* sh-*-*} } */
/* { dg-options "-O3" } */
/* Test case will check whether rte is generated for two ISRs*/
extern void foo();
#pragma interrupt
void isr1(void)
{
foo();
}
#pragma interrupt
void isr2(void)
{
foo();
}
/* { dg-final { scan-assembler-times "rte" 2} } */