]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/ieee754/ldbl-96/w_expl.c
Avoid overflows from long double functions using __kernel_standard.
[thirdparty/glibc.git] / sysdeps / ieee754 / ldbl-96 / w_expl.c
index d61c0a37bbc6fae0be463b49e992c6d4d37992b1..55c68462bd85eda9f0c06d5175d3e881cbc8a6ad 100644 (file)
@@ -33,12 +33,12 @@ __expl (long double x)
   if (__builtin_expect (isgreater (x, o_threshold), 0))
     {
       if (_LIB_VERSION != _IEEE_)
-       return __kernel_standard (x, x, 206);
+       return __kernel_standard_l (x, x, 206);
     }
   else if (__builtin_expect (isless (x, u_threshold), 0))
     {
       if (_LIB_VERSION != _IEEE_)
-       return __kernel_standard (x, x, 207);
+       return __kernel_standard_l (x, x, 207);
     }
 
   return __ieee754_expl (x);