00db10
commit 37dd6a19ca36b84cdef7e51dffcb68a2cbf54a6a
00db10
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
00db10
Date:   Fri Aug 14 05:30:17 2015 -0700
00db10
00db10
    Remove incorrect register mov in floorf/nearbyint on x86_64
00db10
    
00db10
    The change in 0b5395f052ee09cd7e3d219af4e805c38058afb5 replaced calls
00db10
    to __get_cpu_features@plt followed by a mov from rax to rdx, with a
00db10
    single macro LOAD_RTLD_GLOBAL_RO_RDX.  It is pretty clear that there
00db10
    was a typo in s_floorf and __nearbyint due to which the (now incorrect)
00db10
    mov was not removed.  This patch removes that mov.
00db10
    
00db10
        * sysdeps/x86_64/fpu/multiarch/s_floorf.S (__floorf): Remove
00db10
        unnecessary movq.
00db10
        * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S (__nearbyint):
00db10
        Likewise.
00db10
00db10
diff --git a/sysdeps/x86_64/fpu/multiarch/s_floorf.S b/sysdeps/x86_64/fpu/multiarch/s_floorf.S
00db10
index f60f662..9d67847 100644
00db10
--- a/sysdeps/x86_64/fpu/multiarch/s_floorf.S
00db10
+++ b/sysdeps/x86_64/fpu/multiarch/s_floorf.S
00db10
@@ -23,7 +23,6 @@
00db10
 ENTRY(__floorf)
00db10
 	.type	__floorf, @gnu_indirect_function
00db10
 	LOAD_RTLD_GLOBAL_RO_RDX
00db10
-	movq	%rax, %rdx
00db10
 	leaq	__floorf_sse41(%rip), %rax
00db10
 	HAS_CPU_FEATURE (SSE4_1)
00db10
 	jnz	2f
00db10
diff --git a/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S b/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S
00db10
index 109395c..2c13024 100644
00db10
--- a/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S
00db10
+++ b/sysdeps/x86_64/fpu/multiarch/s_nearbyint.S
00db10
@@ -23,7 +23,6 @@
00db10
 ENTRY(__nearbyint)
00db10
 	.type	__nearbyint, @gnu_indirect_function
00db10
 	LOAD_RTLD_GLOBAL_RO_RDX
00db10
-	movq	%rax, %rdx
00db10
 	leaq	__nearbyint_sse41(%rip), %rax
00db10
 	HAS_CPU_FEATURE (SSE4_1)
00db10
 	jnz	2f