Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20050410-1.c
blob: 3a1f45319a630a003741e4f1ca9fc5c1ad49683a [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
int
s
=
200
;
int
__attribute__
((
noinline
))
foo
(
void
)
{
return
(
signed
char
)
(
s
-
100
)
-
5
;
}
int
main
(
void
)
{
if
(
foo
()
!=
95
)
abort
();
exit
(
0
);
}