fix typo in the x86_64 rounding asm

This commit is contained in:
Rich Felker 2012-04-29 20:36:32 -04:00
parent 0e4a995213
commit e5a9b50e97
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
.global llrint
.type llrint,@function
llrint:
cvtsd2si @xmm0,%rax
cvtsd2si %xmm0,%rax
ret

View File

@ -1,5 +1,5 @@
.global llrintf
.type llrintf,@function
llrintf:
cvtss2si @xmm0,%rax
cvtss2si %xmm0,%rax
ret

View File

@ -1,5 +1,5 @@
.global lrint
.type lrint,@function
lrint:
cvtsd2si @xmm0,%rax
cvtsd2si %xmm0,%rax
ret

View File

@ -1,5 +1,5 @@
.global lrintf
.type lrintf,@function
lrintf:
cvtss2si @xmm0,%rax
cvtss2si %xmm0,%rax
ret