about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2018-04-27 09:56:35 -0300
committerTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2018-04-27 17:11:29 -0300
commit06135c33b710c64334ff10d2fcc4780154b65776 (patch)
tree341d5296956fc67fcc4605c7c76724a2e25c03c1
parent3a33b0696937d3c8324e517512f8dc952166a7ab (diff)
downloadglibc-06135c33b710c64334ff10d2fcc4780154b65776.tar.gz
glibc-06135c33b710c64334ff10d2fcc4780154b65776.tar.xz
glibc-06135c33b710c64334ff10d2fcc4780154b65776.zip
Replace M_SUF (fabs) with M_FABS
math-type-macros.h provides the macro M_FABS in order to reference
the correct fabs function for a specific type.
In most of the cases, M_FABS is identical to M_SUF (fabs), but that
may change in the future.

	* math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
	* math/w_asin_template.c: Likewise.
	* math/w_atanh_template.c: Likewise.

Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
-rw-r--r--ChangeLog6
-rw-r--r--math/w_acos_template.c2
-rw-r--r--math/w_asin_template.c2
-rw-r--r--math/w_atanh_template.c4
4 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f2c1d1b04..9a614182a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-04-27  Tulio Magno Quites Machado Filho  <tuliom@linux.ibm.com>
+
+	* math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
+	* math/w_asin_template.c: Likewise.
+	* math/w_atanh_template.c: Likewise.
+
 2018-04-27  Gabriel F. T. Gomes  <gabriel@inconstante.eti.br>
 
 	* sysdeps/powerpc/preconfigure [machine == powerpc64] (machine): Define
diff --git a/math/w_acos_template.c b/math/w_acos_template.c
index 0861e9fbea..76537b27de 100644
--- a/math/w_acos_template.c
+++ b/math/w_acos_template.c
@@ -29,7 +29,7 @@
 FLOAT
 M_DECL_FUNC (__acos) (FLOAT x)
 {
-  if (__glibc_unlikely (isgreater (M_SUF (fabs) (x), M_LIT (1.0))))
+  if (__glibc_unlikely (isgreater (M_FABS (x), M_LIT (1.0))))
     /* Domain error: acos(|x|>1).  */
     __set_errno (EDOM);
   return M_SUF (__ieee754_acos) (x);
diff --git a/math/w_asin_template.c b/math/w_asin_template.c
index a960a92e17..9487ada6ab 100644
--- a/math/w_asin_template.c
+++ b/math/w_asin_template.c
@@ -29,7 +29,7 @@
 FLOAT
 M_DECL_FUNC (__asin) (FLOAT x)
 {
-  if (__glibc_unlikely (isgreater (M_SUF (fabs) (x),  M_LIT (1.0))))
+  if (__glibc_unlikely (isgreater (M_FABS (x),  M_LIT (1.0))))
     /* Domain error: asin(|x|>1).  */
     __set_errno (EDOM);
   return M_SUF (__ieee754_asin) (x);
diff --git a/math/w_atanh_template.c b/math/w_atanh_template.c
index d4b2838025..1e528256ff 100644
--- a/math/w_atanh_template.c
+++ b/math/w_atanh_template.c
@@ -29,9 +29,9 @@
 FLOAT
 M_DECL_FUNC (__atanh) (FLOAT x)
 {
-  if (__glibc_unlikely (isgreaterequal (M_SUF (fabs) (x), M_LIT (1.0))))
+  if (__glibc_unlikely (isgreaterequal (M_FABS (x), M_LIT (1.0))))
     {
-      if (M_SUF (fabs) (x) == 1)
+      if (M_FABS (x) == 1)
 	/* Pole error: atanh(|x|==1).  */
 	__set_errno (ERANGE);
       else