mirror of https://git.musl-libc.org/git/musl
4 changed files with 4 additions and 4 deletions
@ -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