diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-04-06 14:33:14 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-13 10:08:46 -0300 |
commit | 104d2005d5b7fb13a970905ca3f4a7e7e783cf1a (patch) | |
tree | 7af83f8b5fe473d72e1d0ec72c5ac45b4d0351b6 /math/w_hypotf.c | |
parent | 2f44eef584a4c9650ce772258dedde902c00dae2 (diff) | |
download | glibc-104d2005d5b7fb13a970905ca3f4a7e7e783cf1a.zip glibc-104d2005d5b7fb13a970905ca3f4a7e7e783cf1a.tar.gz glibc-104d2005d5b7fb13a970905ca3f4a7e7e783cf1a.tar.bz2 |
math: Remove the error handling wrapper from hypot and hypotf
The error handling is moved to sysdeps/ieee754 version with no SVID
support. The compatibility symbol versions still use the wrapper with
SVID error handling around the new code. There is no new symbol version
nor compatibility code on !LIBM_SVID_COMPAT targets (e.g. riscv).
Only ia64 is unchanged, since it still uses the arch specific
__libm_error_region on its implementation.
Checked on x86_64-linux-gnu, i686-linux-gnu, and aarch64-linux-gnu.
Diffstat (limited to 'math/w_hypotf.c')
-rw-r--r-- | math/w_hypotf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/math/w_hypotf.c b/math/w_hypotf.c new file mode 100644 index 0000000..b15a9b06 --- /dev/null +++ b/math/w_hypotf.c @@ -0,0 +1,8 @@ +#include <math-type-macros-float.h> +#undef __USE_WRAPPER_TEMPLATE +#define __USE_WRAPPER_TEMPLATE 1 +#undef declare_mgen_alias +#define declare_mgen_alias(a, b) +#include <w_hypot_template.c> +versioned_symbol (libm, __hypotf, hypotf, GLIBC_2_35); +libm_alias_float_other (__hypotf, hypotf) |