summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorRogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>2017-06-23 09:10:32 -0300
committerTulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>2017-06-23 09:19:00 -0300
commit76c4c838e7463aab5a9aec6c3e5ce70eb1887bc0 (patch)
treec0fa71fc2c5ecffbf8620eaf4f30a7399b74828a /sysdeps
parent1301c20f6c2c36a84f418da513841ce89aba7d1c (diff)
powerpc: Fix sinf() IFUNC fallback.
sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c should fall back to sysdeps/powerpc/fpu/s_sinf.c not to sysdeps/ieee754/flt-32/s_sinf.c. * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Change s_sinf.c from sysdeps/ieee754/flt-32/ to sysdeps/powerpc/fpu/.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c
index 83e37f92c6..b2ff032137 100644
--- a/sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c
+++ b/sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c
@@ -23,4 +23,4 @@
#define __sinf __sinf_ppc64
-#include <sysdeps/ieee754/flt-32/s_sinf.c>
+#include <sysdeps/powerpc/fpu/s_sinf.c>