Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gcc.target
/
bfin
/
saveall.c
blob: 19f9decd74d64e2aa40c62d3360703ae20e0f765 [
file
] [
log
] [
blame
]
/* { dg-do run { target bfin*-*-* } } */
/* { dg-options "-fomit-frame-pointer" } */
void
foo
(
void
)
__attribute__
((
saveall
));
void
foo
()
{
asm
(
"R0 = 0; RETS = R0;"
);
}
int
main
()
{
foo
();
return
0
;
}