Raymond Toy pushed to branch issue-435-add-core-math-compile-code at cmucl / cmucl Commits: 993d1907 by Raymond Toy at 2026-02-24T18:42:57-08:00 Undo changes to lisp_cosh and lisp_expm1 Accidentally let some stuff in. - - - - - 1 changed file: - src/lisp/irrat.c Changes: ===================================== src/lisp/irrat.c ===================================== @@ -163,8 +163,6 @@ double lisp_cosh(double x) { #ifdef FEATURE_CORE_MATH - MAYBE_SIGNAL_OVERFLOW(fabs(x)) - return cr_cosh(x); #else return __ieee754_cosh(x); @@ -308,10 +306,6 @@ double lisp_expm1(double x) { #ifdef FEATURE_CORE_MATH - if (isinf(x) == 1) { - return fdlibm_setexception(x, FDLIBM_OVERFLOW); - } - return cr_expm1(x); #else return fdlibm_expm1(x); View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/993d19072a51e7a2186a25aa... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/993d19072a51e7a2186a25aa... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)