This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
hongwenjun
/
musl
espejo de
https://git.musl-libc.org/git/musl
Seguir
1
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
math: fix lrintl.s on x86_64 (use movslq to signextend the result)
Szabolcs Nagy
hace 11 años
padre
07039ed856
commit
e5937885de
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
1
1
src/math/x86_64/lrintl.s
+ 1
- 1
src/math/x86_64/lrintl.s
Ver fichero
@@ -3,5 +3,5 @@
lrintl:
fldt 8(%rsp)
fistpl 8(%rsp)
- mov
8(%rsp),%e
ax
+ mov
slq 8(%rsp),%r
ax
ret