diff options
Diffstat (limited to 'testasmcomp/mainarith.c')
-rw-r--r-- | testasmcomp/mainarith.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testasmcomp/mainarith.c b/testasmcomp/mainarith.c index 5290c35a5..af233c889 100644 --- a/testasmcomp/mainarith.c +++ b/testasmcomp/mainarith.c @@ -284,9 +284,9 @@ int main(argc, argv) } } weird[0] = 0.0; - weird[1] = 1.0 / 0.0; /* +infty */ - weird[2] = -1.0 / 0.0; /* -infty */ - weird[3] = 0.0 / 0.0; /* NaN */ + weird[1] = 1.0 / weird[0]; /* +infty */ + weird[2] = -1.0 / weird[0]; /* -infty */ + weird[3] = 0.0 / weird[0]; /* NaN */ for (x = 0; x < 4; x++) { for (y = 0; y < 4; y++) { f = weird[x]; g = weird[y]; do_test(); |