This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via efbeb89b14488c258f8f95e4f443460e428a2046 (commit) via 18e4370220c8b585a61fc5d935396be7676cf27e (commit) from 60d71b68ef6af3e5fb3e045f7ce2a42a5ff23ac1 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit efbeb89b14488c258f8f95e4f443460e428a2046 Author: Raymond Toy toy.raymond@gmail.com Date: Sat Aug 2 15:38:45 2014 -0700
Use the fdlibm inverse hyperbolic functions.
diff --git a/src/code/irrat.lisp b/src/code/irrat.lisp index 86c7d9e..4ea134e 100644 --- a/src/code/irrat.lisp +++ b/src/code/irrat.lisp @@ -74,9 +74,9 @@ (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) +(def-math-rtn ("fdlibm_asinh" %asinh) 1) +(def-math-rtn ("__ieee754_acosh" %acosh) 1) +(def-math-rtn ("__ieee754_atanh" %atanh) 1)
;;; Exponential and Logarithmic. (def-math-rtn ("__ieee754_exp" %exp) 1)
commit 18e4370220c8b585a61fc5d935396be7676cf27e Author: Raymond Toy toy.raymond@gmail.com Date: Sat Aug 2 15:37:59 2014 -0700
Compile the fdlibm inverse hyperbolics.
diff --git a/src/lisp/Config.x86_darwin b/src/lisp/Config.x86_darwin index 7ced0db..d260368 100644 --- a/src/lisp/Config.x86_darwin +++ b/src/lisp/Config.x86_darwin @@ -21,7 +21,8 @@ EXEC_FINAL_OBJ = exec-final.o OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c sincos.c \ s_log1p.c s_expm1.c e_pow.c e_exp.c e_log.c \ e_acos.c e_asin.c s_atan.c \ - e_cosh.c e_sinh.c s_tanh.c + e_cosh.c e_sinh.c s_tanh.c \ + e_acosh.c s_asinh.c e_atanh.c
k_sin.o : k_sin.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< @@ -65,3 +66,9 @@ e_sinh.o : e_sinh.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< s_tanh.o : s_tanh.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +e_acosh.o : e_acosh.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +e_asinh.o : s_asinh.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< +e_atanh.o : e_atanh.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
-----------------------------------------------------------------------
Summary of changes: src/code/irrat.lisp | 6 +++--- src/lisp/Config.x86_darwin | 9 ++++++++- 2 files changed, 11 insertions(+), 4 deletions(-)
hooks/post-receive