diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-96')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_remquol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-96/s_remquol.c b/sysdeps/ieee754/ldbl-96/s_remquol.c index 6b3499d257..1462b54456 100644 --- a/sysdeps/ieee754/ldbl-96/s_remquol.c +++ b/sysdeps/ieee754/ldbl-96/s_remquol.c @@ -60,12 +60,12 @@ __remquol (long double x, long double p, int *quo) p = fabsl (p); cquo = 0; - if (x >= 4 * p) + if (ep <= 0x7ffc && x >= 4 * p) { x -= 4 * p; cquo += 4; } - if (x >= 2 * p) + if (ep <= 0x7ffd && x >= 2 * p) { x -= 2 * p; cquo += 2; |