This website works better with JavaScript
Home
Explore
Help
Sign In
hongwenjun
/
musl
mirror of
https://git.musl-libc.org/git/musl
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
math: fix lrintl.s on x86_64 (use movslq to signextend the result)
Szabolcs Nagy
11 years ago
parent
07039ed856
commit
e5937885de
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
src/math/x86_64/lrintl.s
+ 1
- 1
src/math/x86_64/lrintl.s
View File
@@ -3,5 +3,5 @@
lrintl:
fldt 8(%rsp)
fistpl 8(%rsp)
- mov
8(%rsp),%e
ax
+ mov
slq 8(%rsp),%r
ax
ret