Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
980604-1.c
blob: ac389539d62e7d0654eb8d99ceb50d0db0c49e18 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
int
a
=
1
;
int
b
=
-
1
;
int
c
=
1
;
int
d
=
0
;
int
main
(
void
)
{
double
e
;
double
f
;
double
g
;
f
=
c
;
g
=
d
;
e
=
(
a
<
b
)
?
f
:
g
;
if
(
e
)
abort
();
exit
(
0
);
}