diff options
Diffstat (limited to 'sysdeps/libm-ieee754')
-rw-r--r-- | sysdeps/libm-ieee754/s_remquo.c | 5 | ||||
-rw-r--r-- | sysdeps/libm-ieee754/s_remquof.c | 5 | ||||
-rw-r--r-- | sysdeps/libm-ieee754/s_remquol.c | 5 |
3 files changed, 0 insertions, 15 deletions
diff --git a/sysdeps/libm-ieee754/s_remquo.c b/sysdeps/libm-ieee754/s_remquo.c index 39f6ceab2e..6e32efbba2 100644 --- a/sysdeps/libm-ieee754/s_remquo.c +++ b/sysdeps/libm-ieee754/s_remquo.c @@ -71,11 +71,6 @@ __remquo (double x, double y, int *quo) x -= 2 * y; cquo += 2; } - if (x >= y) - { - x -= y; - ++cquo; - } if (hy < 0x00200000) { diff --git a/sysdeps/libm-ieee754/s_remquof.c b/sysdeps/libm-ieee754/s_remquof.c index b3870f4b02..2ffd16c903 100644 --- a/sysdeps/libm-ieee754/s_remquof.c +++ b/sysdeps/libm-ieee754/s_remquof.c @@ -70,11 +70,6 @@ __remquof (float x, float y, int *quo) x -= 2 * y; cquo += 2; } - if (x >= y) - { - x -= y; - ++cquo; - } if (hy < 0x01000000) { diff --git a/sysdeps/libm-ieee754/s_remquol.c b/sysdeps/libm-ieee754/s_remquol.c index b7835e6dc7..88ff298eb6 100644 --- a/sysdeps/libm-ieee754/s_remquol.c +++ b/sysdeps/libm-ieee754/s_remquol.c @@ -71,11 +71,6 @@ __remquol (long double x, long double p, int *quo) x -= 2 * p; cquo += 2; } - if (x >= p) - { - x -= p; - ++cquo; - } if (ep < 0x0002) { |