mirror of git://git.musl-libc.org/musl
fix typo in the x86_64 rounding asm
This commit is contained in:
parent
0e4a995213
commit
e5a9b50e97
|
@ -1,5 +1,5 @@
|
|||
.global llrint
|
||||
.type llrint,@function
|
||||
llrint:
|
||||
cvtsd2si @xmm0,%rax
|
||||
cvtsd2si %xmm0,%rax
|
||||
ret
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.global llrintf
|
||||
.type llrintf,@function
|
||||
llrintf:
|
||||
cvtss2si @xmm0,%rax
|
||||
cvtss2si %xmm0,%rax
|
||||
ret
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.global lrint
|
||||
.type lrint,@function
|
||||
lrint:
|
||||
cvtsd2si @xmm0,%rax
|
||||
cvtsd2si %xmm0,%rax
|
||||
ret
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.global lrintf
|
||||
.type lrintf,@function
|
||||
lrintf:
|
||||
cvtss2si @xmm0,%rax
|
||||
cvtss2si %xmm0,%rax
|
||||
ret
|
||||
|
|
Loading…
Reference in New Issue