mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 06:10:06 +00:00
104d2005d5
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.
9 lines
281 B
C
9 lines
281 B
C
#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, __hypot, hypot, GLIBC_2_35);
|
|
libm_alias_float_other (__hypot, hypot)
|