diff options
author | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2024-01-09 15:32:08 +0000 |
---|---|---|
committer | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2024-01-12 16:02:12 +0000 |
commit | 08ddd26814310e7c1b8c3956a6a0ac7aedea9cfd (patch) | |
tree | 2fab0f0ec2a9aa86d9488c09e4fed39a04f852da /sysdeps/i386 | |
parent | 7c14d8a985416986256f68568313cdb36f559821 (diff) | |
download | glibc-08ddd26814310e7c1b8c3956a6a0ac7aedea9cfd.zip glibc-08ddd26814310e7c1b8c3956a6a0ac7aedea9cfd.tar.gz glibc-08ddd26814310e7c1b8c3956a6a0ac7aedea9cfd.tar.bz2 |
math: remove exp10 wrappers
Remove the error handling wrapper from exp10. This is very similar to
the changes done to exp and exp2, except that we also need to handle
pow10 and pow10l.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/fpu/w_exp10_compat.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/i386/fpu/w_exp10_compat.c b/sysdeps/i386/fpu/w_exp10_compat.c new file mode 100644 index 0000000..b534553 --- /dev/null +++ b/sysdeps/i386/fpu/w_exp10_compat.c @@ -0,0 +1,3 @@ +/* i386 provides an optimized __ieee754_exp10. */ +#define NO_COMPAT_NEEDED 1 +#include <math/w_exp10_compat.c> |