Remove incorrect register mov in floorf/nearbyint on x86_64
commit37dd6a19ca36b84cdef7e51dffcb68a2cbf54a6a
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Fri, 14 Aug 2015 12:30:17 +0000 (14 05:30 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 14 Aug 2015 12:30:17 +0000 (14 05:30 -0700)
tree72e73ccfaec00ae469b049a4a0c5655a5f495ed8
parent3ba0ac10fa9dd577dfe2f36c47bc95467d9a1ca2
Remove incorrect register mov in floorf/nearbyint on x86_64

The change in 0b5395f052ee09cd7e3d219af4e805c38058afb5 replaced calls
to __get_cpu_features@plt followed by a mov from rax to rdx, with a
single macro LOAD_RTLD_GLOBAL_RO_RDX.  It is pretty clear that there
was a typo in s_floorf and __nearbyint due to which the (now incorrect)
mov was not removed.  This patch removes that mov.

* sysdeps/x86_64/fpu/multiarch/s_floorf.S (__floorf): Remove
unnecessary movq.
* sysdeps/x86_64/fpu/multiarch/s_nearbyint.S (__nearbyint):
Likewise.
ChangeLog
sysdeps/x86_64/fpu/multiarch/s_floorf.S
sysdeps/x86_64/fpu/multiarch/s_nearbyint.S