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
testsuite: pru: Fix pr64366.c for new -std=gnu23 default
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
sh
/
sh2a-resbank.c
blob
bb2fa07ac170726b1f2644b8fc8e032a110397b5
1
/* Test for resbank attribute. */
2
/* { dg-do compile { target { sh2a } } } */
3
/* { dg-final { scan-assembler "resbank" } } */
4
5
extern
void
bar
(
void
);
6
7
void
foo
(
void
)
__attribute__
((
interrupt_handler
,
resbank
));
8
void
foo
(
void
)
9
{
10
bar
();
11
}