Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
ieee
/
20001122-1.c
blob: fd7e70262aaee39d429cf12935e51bdf0bfe915b [
file
] [
log
] [
blame
]
volatile
double
a
,
*
p
;
int
main
()
{
double
c
,
d
;
volatile
double
b
;
d
=
1.0
;
p
=
&
b
;
do
{
c
=
d
;
d
=
c
*
0.5
;
b
=
1
+
d
;
}
while
(
b
!=
1.0
);
a
=
1.0
+
c
;
if
(
a
==
1.0
)
abort
();
exit
(
0
);
}