diff options
author | Wilco Dijkstra <Wilco.Dijkstra@arm.com> | 2019-07-16 11:29:06 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-10-21 14:29:12 -0300 |
commit | d0007dc53cc83f22037bf6c7a297fa2e8066a335 (patch) | |
tree | 377610c3d83493097dce5484f900eed53e1997ae /math/Makefile | |
parent | 55d530114ef3513eb8588e31e3850f04ac608077 (diff) | |
download | glibc-d0007dc53cc83f22037bf6c7a297fa2e8066a335.tar glibc-d0007dc53cc83f22037bf6c7a297fa2e8066a335.tar.gz glibc-d0007dc53cc83f22037bf6c7a297fa2e8066a335.tar.bz2 glibc-d0007dc53cc83f22037bf6c7a297fa2e8066a335.zip |
Remove x64 _finite tests and references
Remove _finite tests and references from x86_64. Rather than calling
__exp_finite, use exp directly (since it's the same entry point).
x86_64 builds and passes testsuite.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index 94124882d2..7aedacb9ad 100644 --- a/math/Makefile +++ b/math/Makefile @@ -203,7 +203,7 @@ $(inst_libdir)/libm.so: $(common-objpfx)format.lds \ (echo '/* GNU ld script'; echo '*/';\ cat $<; \ echo 'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \ - 'AS_NEEDED ( $(libdir)/libmvec_nonshared.a $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \ + 'AS_NEEDED ( $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \ ) > $@.new mv -f $@.new $@ |