Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000225-1.c
blob: 9d66313f6b003b0a990e4b40fc1f485c9619bd8e [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
int
main
()
{
int
nResult
;
int
b
=
0
;
int
i
=
-
1
;
do
{
if
(
b
!=
0
)
{
abort
();
nResult
=
1
;
}
else
{
nResult
=
0
;
}
i
++;
b
=(
i
+
2
)*
4
;
}
while
(
i
<
0
);
exit
(
0
);
}