summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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