about summary refs log tree commit diff
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
parent1301c20f6c2c36a84f418da513841ce89aba7d1c (diff)
downloadglibc-76c4c838e7463aab5a9aec6c3e5ce70eb1887bc0.tar.gz
glibc-76c4c838e7463aab5a9aec6c3e5ce70eb1887bc0.tar.xz
glibc-76c4c838e7463aab5a9aec6c3e5ce70eb1887bc0.zip
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/.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 44115282c0..044f605334 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-06-23  Rogerio A. Cardoso  <rcardoso@linux.vnet.ibm.com>
+
+	* sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Change
+	s_sinf.c from sysdeps/ieee754/flt-32/ to sysdeps/powerpc/fpu/.
+
 2017-06-23  Paul A. Clarke  <pc@us.ibm.com>
 
 	* sysdeps/unix/sysv/linux/powerpc/sysconf.c: Remove references
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>