This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
hongwenjun
/
musl
mirror da
https://git.musl-libc.org/git/musl
Segui
1
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
math: fix lrintl.s on x86_64 (use movslq to signextend the result)
Szabolcs Nagy
11 anni fa
parent
07039ed856
commit
e5937885de
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
1
src/math/x86_64/lrintl.s
+ 1
- 1
src/math/x86_64/lrintl.s
Vedi File
@@ -3,5 +3,5 @@
lrintl:
fldt 8(%rsp)
fistpl 8(%rsp)
- mov
8(%rsp),%e
ax
+ mov
slq 8(%rsp),%r
ax
ret