Skip to content
Snippets Groups Projects
Commit 6181c24a authored by Zuzana Baranová's avatar Zuzana Baranová
Browse files

dios: Use compiler __builtins for math.h classification macros.

parent 6d4219fd
No related branches found
No related tags found
No related merge requests found
...@@ -76,30 +76,10 @@ extern char __nan[]; ...@@ -76,30 +76,10 @@ extern char __nan[];
#define MATH_ERREXCEPT 2 #define MATH_ERREXCEPT 2
#define math_errhandling MATH_ERREXCEPT #define math_errhandling MATH_ERREXCEPT
#define fpclassify(x) \ #define fpclassify(x) __builtin_fpclassify(x)
((sizeof (x) == sizeof (float)) ? \ #define isfinite(x) __builtin_isfinite(x)
__fpclassifyf(x) \ #define isnormal(x) __builtin_isnormal(x)
: (sizeof (x) == sizeof (double)) ? \ #define signbit(x) __builtin_signbit(x)
__fpclassify(x) \
: __fpclassifyl(x))
#define isfinite(x) \
((sizeof (x) == sizeof (float)) ? \
__isfinitef(x) \
: (sizeof (x) == sizeof (double)) ? \
__isfinite(x) \
: __isfinitel(x))
#define isnormal(x) \
((sizeof (x) == sizeof (float)) ? \
__isnormalf(x) \
: (sizeof (x) == sizeof (double)) ? \
__isnormal(x) \
: __isnormall(x))
#define signbit(x) \
((sizeof (x) == sizeof (float)) ? \
__signbitf(x) \
: (sizeof (x) == sizeof (double)) ? \
__signbit(x) \
: __signbitl(x))
#define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
#define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
...@@ -110,18 +90,8 @@ extern char __nan[]; ...@@ -110,18 +90,8 @@ extern char __nan[];
#define isunordered(x, y) (isnan(x) || isnan(y)) #define isunordered(x, y) (isnan(x) || isnan(y))
#endif /* __ISO_C_VISIBLE >= 1999 */ #endif /* __ISO_C_VISIBLE >= 1999 */
#define isinf(x) \ #define isinf(x) __builtin_isinf(x)
((sizeof (x) == sizeof (float)) ? \ #define isnan(x) __builtin_isnan(x)
__isinff(x) \
: (sizeof (x) == sizeof (double)) ? \
__isinf(x) \
: __isinfl(x))
#define isnan(x) \
((sizeof (x) == sizeof (float)) ? \
__isnanf(x) \
: (sizeof (x) == sizeof (double)) ? \
__isnan(x) \
: __isnanl(x))
/* /*
* XOPEN/SVID * XOPEN/SVID
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment