math: fix lrintl.s on x86_64 (use movslq to signextend the result)

This commit is contained in:
Szabolcs Nagy 2013-09-05 12:04:58 +00:00
parent 07039ed856
commit e5937885de
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
lrintl:
fldt 8(%rsp)
fistpl 8(%rsp)
mov 8(%rsp),%eax
movslq 8(%rsp),%rax
ret