aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2018-06-20 17:42:47 -0300
committerTulio Magno Quites Machado Filho <tuliom@linux.ibm.com>2018-06-20 17:42:47 -0300
commitbadba23cacdec4c63bb0ac20fa3f90cc629f884c (patch)
tree1859b3c9f800198ce26197c103df7b7047443ab6
parent2d1c89a5d7c872a1109768f50e2508cf9a4b0348 (diff)
Move declare_mgen_finite_alias definition
Move declare_mgen_finite_alias, declare_mgen_finite_alias_s and declare_mgen_finite_alias_x to a shared place in order to reuse them in other files that also declare _finite aliases. * math/e_exp2_template.c (declare_mgen_finite_alias, declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): Move to... * sysdeps/generic/math-type-macros.h (declare_mgen_finite_alias, declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): ... here. Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
-rw-r--r--ChangeLog7
-rw-r--r--math/e_exp2_template.c7
-rw-r--r--sysdeps/generic/math-type-macros.h15
3 files changed, 22 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 672fbd3fd5..357e3a745c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
+
+ * math/e_exp2_template.c (declare_mgen_finite_alias,
+ declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): Move to...
+ * sysdeps/generic/math-type-macros.h (declare_mgen_finite_alias,
+ declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): ... here.
+
2018-06-20 Florian Weimer <fweimer@redhat.com>
* libio/libioP.h (IO_validate_vtable): Avoid ptrdiff_t overflow.
diff --git a/math/e_exp2_template.c b/math/e_exp2_template.c
index 30ed4af49b..19f9780b05 100644
--- a/math/e_exp2_template.c
+++ b/math/e_exp2_template.c
@@ -21,13 +21,6 @@
#include <math-underflow.h>
#include <float.h>
-#define declare_mgen_finite_alias_x(from, to) \
- strong_alias (from, to ## _finite)
-#define declare_mgen_finite_alias_s(from,to) \
- declare_mgen_finite_alias_x (from, to)
-#define declare_mgen_finite_alias(from, to) \
- declare_mgen_finite_alias_s (M_SUF (from), M_SUF (to))
-
FLOAT
M_DECL_FUNC (__ieee754_exp2) (FLOAT x)
{
diff --git a/sysdeps/generic/math-type-macros.h b/sysdeps/generic/math-type-macros.h
index 0e8ef16d7a..5250815253 100644
--- a/sysdeps/generic/math-type-macros.h
+++ b/sysdeps/generic/math-type-macros.h
@@ -74,6 +74,21 @@
# error "SET_NAN_PAYLOAD must be defined."
#endif
+#ifndef declare_mgen_finite_alias_x
+#define declare_mgen_finite_alias_x(from, to) \
+ strong_alias (from, to ## _finite)
+#endif
+
+#ifndef declare_mgen_finite_alias_s
+# define declare_mgen_finite_alias_s(from,to) \
+ declare_mgen_finite_alias_x (from, to)
+#endif
+
+#ifndef declare_mgen_finite_alias
+# define declare_mgen_finite_alias(from, to) \
+ declare_mgen_finite_alias_s (M_SUF (from), M_SUF (to))
+#endif
+
#define __M_CONCAT(a,b) a ## b
#define __M_CONCATX(a,b) __M_CONCAT(a,b)