From e5a9b50e973aadff2e6303d01be8807b1fb9c325 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 29 Apr 2012 20:36:32 -0400 Subject: fix typo in the x86_64 rounding asm --- src/math/x86_64/llrint.s | 2 +- src/math/x86_64/llrintf.s | 2 +- src/math/x86_64/lrint.s | 2 +- src/math/x86_64/lrintf.s | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/math') 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 -- cgit v1.2.1