This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
hongwenjun
/
musl
mirror of
https://git.musl-libc.org/git/musl
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
math: fix lrintl.s on x86_64 (use movslq to signextend the result)
Szabolcs Nagy
11 năm trước cách đây
mục cha
07039ed856
commit
e5937885de
1 tập tin đã thay đổi
với
1 bổ sung
và
1 xóa
Split View
Hiển thị tình trạng sai khác
1
1
src/math/x86_64/lrintl.s
+ 1
- 1
src/math/x86_64/lrintl.s
Xem Tập Tin
@@ -3,5 +3,5 @@
lrintl:
fldt 8(%rsp)
fistpl 8(%rsp)
- mov
8(%rsp),%e
ax
+ mov
slq 8(%rsp),%r
ax
ret