From: Rich Felker Date: Mon, 30 Apr 2012 00:36:32 +0000 (-0400) Subject: fix typo in the x86_64 rounding asm X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=e5a9b50e973aadff2e6303d01be8807b1fb9c325 fix typo in the x86_64 rounding asm --- 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