Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr46316.c
blob: 7aafaa740ba9732651cdf01079c6a73302d5f04e [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
long
long
__attribute__
((
noinline
,
noclone
))
foo
(
long
long
t
)
{
while
(
t
>
-
4
)
t
-=
2
;
return
t
;
}
int
main
(
void
)
{
if
(
foo
(
0
)
!=
-
4
)
abort
();
return
0
;
}