From 21aad0ecc9f96297deedf9362c19fd877910592a Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 2 Aug 2014 15:15:53 -0700 Subject: [PATCH] Use fdlibm hyperbolic functions instead of libm. --- src/code/irrat.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/code/irrat.lisp b/src/code/irrat.lisp index ef1628b32..86c7d9ebe 100644 --- a/src/code/irrat.lisp +++ b/src/code/irrat.lisp @@ -71,9 +71,9 @@ (def-math-rtn "atan2" 2) (def-math-rtn ("__ieee754_asin" %asin) 1) (def-math-rtn ("__ieee754_acos" %acos) 1) -(def-math-rtn "sinh" 1) -(def-math-rtn "cosh" 1) -(def-math-rtn "tanh" 1) +(def-math-rtn ("__ieee754_sinh" %sinh) 1) +(def-math-rtn ("__ieee754_cosh" %cosh) 1) +(def-math-rtn ("fdlibm_tanh" %tanh) 1) (def-math-rtn "asinh" 1) (def-math-rtn "acosh" 1) (def-math-rtn "atanh" 1) -- GitLab