Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20091229-1.c
blob: 2ed23554c1dc9234462f0408ad16d57d7d7507e7 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
long
long
foo
(
long
long
v
)
{
return
v
/
-
0x080000000LL
;
}
int
main
(
int
argc
,
char
**
argv
)
{
if
(
foo
(
0x080000000LL
)
!=
-
1
)
abort
();
exit
(
0
);
}