mirror of git://gcc.gnu.org/git/gcc.git
Move from root of repository to intented place.
From-SVN: r90988
This commit is contained in:
parent
763ea90493
commit
d23eb34146
|
|
@ -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} } */
|
||||
Loading…
Reference in New Issue