about summary refs log tree commit diff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-06-28 08:49:23 -0500
committerPaul E. Murphy <murphyp@linux.vnet.ibm.com>2016-08-19 16:46:41 -0500
commitc50eee19c447d3f2c182dc3a22f2b01a053dca41 (patch)
tree3b5f0d5c832bad20fce31502026f27fd6915ea8f /ChangeLog
parentffb84f5e197aaa9d46a35df84689c75d689d73cb (diff)
downloadglibc-c50eee19c447d3f2c182dc3a22f2b01a053dca41.tar.gz
glibc-c50eee19c447d3f2c182dc3a22f2b01a053dca41.tar.xz
glibc-c50eee19c447d3f2c182dc3a22f2b01a053dca41.zip
Convert _Complex sine functions to generated code
Refactor s_c{,a}sin{,h}{f,,l} into a single templated
macro.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog52
1 files changed, 52 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b097cd4205..18ae1c3dda 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,57 @@
 2016-08-19  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
 
+	* math/Makefile (gen-libm-calls): Move
+	casin, casinh, csin, csinh here.
+	(libm-calls): Remove the above.
+
+	* math/s_casin_template.c: Update using type-generic macros.
+	* math/s_casinh_template.c: Likewise.
+	* math/s_csin_template.c: Likewise.
+	* math/s_csinh_template.c: Likewise.
+	* math/k_casinh_template.c: Likewise.
+
+	* math/s_casinf.c: Removed.
+	* math/s_casin.c: Removed.
+	* math/s_casinl.c: Removed.
+	* math/s_casinh.c: Removed.
+	* math/s_casinhf.c: Removed.
+	* math/s_casinhl.c: Removed.
+	* math/s_csin.c: Removed.
+	* math/s_csinf.c: Removed.
+	* math/s_csinl.c: Removed.
+	* math/s_csinh.c: Removed.
+	* math/s_csinhf.c: Removed.
+	* math/s_csinhl.c: Removed.
+	* math/k_casinh.c: Removed.
+	* math/k_casinhf.c: Removed.
+	* math/k_casinhl.c: Removed.
+
+	* sysdeps/alpha/fpu/s_casinf.c: Refactor using templated version.
+	* sysdeps/alpha/fpu/s_casinhf.c: Likewise.
+	* sysdeps/alpha/fpu/s_csinf.c: Likewise.
+	* sysdeps/alpha/fpu/s_csinhf.c: Likewise.
+
+	* sysdeps/ieee754/ldbl-opt/s_casin.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_casinh.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_casinhl.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_casinl.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_csin.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_csinh.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_csinhl.c: Removed.
+	* sysdeps/ieee754/ldbl-opt/s_csinl.c: Removed.
+
+	* sysdeps/m68k/m680x0/fpu/s_csin.c: Refactor into ...
+	* sysdeps/m68k/m680x0/fpu/s_csin_template.c: New file.
+	* sysdeps/m68k/m680x0/fpu/s_csinf.c: Removed.
+	* sysdeps/m68k/m680x0/fpu/s_csinl.c: Removed.
+
+	* sysdeps/m68k/m680x0/fpu/s_csinh.c: Refactor into.
+	* sysdeps/m68k/m680x0/fpu/s_csinh_template.c: New file.
+	* sysdeps/m68k/m680x0/fpu/s_csinhf.c: Removed.
+	* sysdeps/m68k/m680x0/fpu/s_csinhl.c: Removed.
+
+2016-08-19  Paul E. Murphy  <murphyp@linux.vnet.ibm.com>
+
 	* s_casin_template.c: Copy of s_casin.c.
 	* s_casinh_template.c: Copy of s_casinh.c.
 	* s_csin_template.c: Copy of s_csin.c.