diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/e_j1l.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/e_j1l.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-128/e_j1l.c b/sysdeps/ieee754/ldbl-128/e_j1l.c index 6f0a6f80d8..3a977c2a84 100644 --- a/sysdeps/ieee754/ldbl-128/e_j1l.c +++ b/sysdeps/ieee754/ldbl-128/e_j1l.c @@ -834,8 +834,8 @@ __ieee754_y1l (long double x) if (x <= 0.0L) { if (x < 0.0L) - return (zero / zero); - return -1.0L / zero; + return (zero / (zero * x)); + return -HUGE_VALL + x; } xx = fabsl (x); if (xx <= 2.0L) |