libm: Add missing END() directives for amd64 routines
No functional change. Related to D22122. Reviewed by: emaste, kib (earlier version both)
This commit is contained in:
parent
8076c4e7d1
commit
168f19a57b
@ -51,5 +51,6 @@ ENTRY(remainder)
|
|||||||
movsd -8(%rsp),%xmm0
|
movsd -8(%rsp),%xmm0
|
||||||
fstp %st
|
fstp %st
|
||||||
ret
|
ret
|
||||||
|
END(remainder)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -21,5 +21,6 @@ ENTRY(remainderf)
|
|||||||
movss -4(%rsp),%xmm0
|
movss -4(%rsp),%xmm0
|
||||||
fstp %st
|
fstp %st
|
||||||
ret
|
ret
|
||||||
|
END(remainderf)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -46,5 +46,6 @@ ENTRY(remainderl)
|
|||||||
jne 1b
|
jne 1b
|
||||||
fstp %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
|
END(remainderl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -31,5 +31,6 @@ ENTRY(sqrtl)
|
|||||||
fldt 8(%rsp)
|
fldt 8(%rsp)
|
||||||
fsqrt
|
fsqrt
|
||||||
ret
|
ret
|
||||||
|
END(sqrtl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -33,5 +33,6 @@ ENTRY(llrintl)
|
|||||||
fistpll (%rsp)
|
fistpll (%rsp)
|
||||||
popq %rax
|
popq %rax
|
||||||
ret
|
ret
|
||||||
|
END(llrintl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -41,5 +41,6 @@ ENTRY(logbl)
|
|||||||
fxtract
|
fxtract
|
||||||
fstp %st
|
fstp %st
|
||||||
ret
|
ret
|
||||||
|
END(logbl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -33,5 +33,6 @@ ENTRY(lrintl)
|
|||||||
fistpll (%rsp)
|
fistpll (%rsp)
|
||||||
popq %rax
|
popq %rax
|
||||||
ret
|
ret
|
||||||
|
END(lrintl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -60,5 +60,6 @@ ENTRY(remquol)
|
|||||||
/* Store the quotient and return. */
|
/* Store the quotient and return. */
|
||||||
movl %eax,(%rdi)
|
movl %eax,(%rdi)
|
||||||
ret
|
ret
|
||||||
|
END(remquol)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
@ -41,5 +41,6 @@ ENTRY(rintl)
|
|||||||
fldt 8(%rsp)
|
fldt 8(%rsp)
|
||||||
frndint
|
frndint
|
||||||
ret
|
ret
|
||||||
|
END(rintl)
|
||||||
|
|
||||||
.section .note.GNU-stack,"",%progbits
|
.section .note.GNU-stack,"",%progbits
|
||||||
|
Loading…
Reference in New Issue
Block a user