repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
pragma-isr.c
blob
de16639ffb8bc30a9b14d2333c77dc804776dd28
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
)
7
{
8
foo
();
9
}
10
11
#pragma interrupt
12
void
isr2
(
void
)
13
{
14
foo
();
15
}
16
17
/* { dg-final { scan-assembler-times "rte" 2} } */