Explorar o código

fix typo in the x86_64 rounding asm

Rich Felker %!s(int64=13) %!d(string=hai) anos
pai
achega
e5a9b50e97

+ 1 - 1
src/math/x86_64/llrint.s

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

+ 1 - 1
src/math/x86_64/llrintf.s

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

+ 1 - 1
src/math/x86_64/lrint.s

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

+ 1 - 1
src/math/x86_64/lrintf.s

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