about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-04-29 20:36:32 -0400
committerRich Felker <dalias@aerifal.cx>2012-04-29 20:36:32 -0400
commite5a9b50e973aadff2e6303d01be8807b1fb9c325 (patch)
tree8be7e13ffe0f53fa2f87e3acdb65a415a6c5b226
parent0e4a995213620630005a14f32c089879f7c0315e (diff)
downloadmusl-e5a9b50e973aadff2e6303d01be8807b1fb9c325.tar.gz
musl-e5a9b50e973aadff2e6303d01be8807b1fb9c325.tar.xz
musl-e5a9b50e973aadff2e6303d01be8807b1fb9c325.zip
fix typo in the x86_64 rounding asm
-rw-r--r--src/math/x86_64/llrint.s2
-rw-r--r--src/math/x86_64/llrintf.s2
-rw-r--r--src/math/x86_64/lrint.s2
-rw-r--r--src/math/x86_64/lrintf.s2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/math/x86_64/llrint.s b/src/math/x86_64/llrint.s
index 0de0658f..bf476498 100644
--- a/src/math/x86_64/llrint.s
+++ b/src/math/x86_64/llrint.s
@@ -1,5 +1,5 @@
 .global llrint
 .type llrint,@function
 llrint:
-	cvtsd2si @xmm0,%rax
+	cvtsd2si %xmm0,%rax
 	ret
diff --git a/src/math/x86_64/llrintf.s b/src/math/x86_64/llrintf.s
index b05f7be9..d7204ac0 100644
--- a/src/math/x86_64/llrintf.s
+++ b/src/math/x86_64/llrintf.s
@@ -1,5 +1,5 @@
 .global llrintf
 .type llrintf,@function
 llrintf:
-	cvtss2si @xmm0,%rax
+	cvtss2si %xmm0,%rax
 	ret
diff --git a/src/math/x86_64/lrint.s b/src/math/x86_64/lrint.s
index 59b12038..15fc2454 100644
--- a/src/math/x86_64/lrint.s
+++ b/src/math/x86_64/lrint.s
@@ -1,5 +1,5 @@
 .global lrint
 .type lrint,@function
 lrint:
-	cvtsd2si @xmm0,%rax
+	cvtsd2si %xmm0,%rax
 	ret
diff --git a/src/math/x86_64/lrintf.s b/src/math/x86_64/lrintf.s
index 951894b6..488423d2 100644
--- a/src/math/x86_64/lrintf.s
+++ b/src/math/x86_64/lrintf.s
@@ -1,5 +1,5 @@
 .global lrintf
 .type lrintf,@function
 lrintf:
-	cvtss2si @xmm0,%rax
+	cvtss2si %xmm0,%rax
 	ret