repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
pragma-isr.c
blob
07d8fa7f1f9d93186b985984256641140c6b101c
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
)
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} } */