Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gcc.target
/
mips
/
fuse-caller-save.h
blob: edf6039f9b21795319d98b34b5ce2a092d34581b [
file
] [
log
] [
blame
]
static
int
__attribute__
((
noinline
))
ATTRIBUTE
bar
(
int
x
)
{
return
x
+
3
;
}
int
__attribute__
((
noinline
))
ATTRIBUTE
foo
(
int
y
)
{
return
y
+
bar
(
y
);
}
int
ATTRIBUTE
main
(
void
)
{
return
!(
foo
(
5
)
==
13
);
}