diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-02-06 16:29:49 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-02-06 16:46:15 -0500 |
commit | a662220df547e5c2446518e74440a7d834f9ebe6 (patch) | |
tree | b4dc5f425de2720a7329198a8173b963ca4375fa /src/math/i386/exp.c | |
parent | 2f0c31c0273b93196185a9d0dd260ee48e057c6d (diff) | |
download | musl-a662220df547e5c2446518e74440a7d834f9ebe6.tar.gz musl-a662220df547e5c2446518e74440a7d834f9ebe6.tar.bz2 musl-a662220df547e5c2446518e74440a7d834f9ebe6.tar.xz musl-a662220df547e5c2446518e74440a7d834f9ebe6.zip |
remove i386 asm for single and double precision exp-family functions
these did not truncate excess precision in the return value. fixing
them looks like considerable work, and the current C code seems to
outperform them significantly anyway.
long double functions are left in place because they are not subject
to excess precision issues and probably better than the C code.
Diffstat (limited to 'src/math/i386/exp.c')
-rw-r--r-- | src/math/i386/exp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/math/i386/exp.c b/src/math/i386/exp.c deleted file mode 100644 index 11282284..00000000 --- a/src/math/i386/exp.c +++ /dev/null @@ -1 +0,0 @@ -// see exp_ld.s |