diff options
| author | Rich Felker <dalias@aerifal.cx> | 2012-04-29 20:36:32 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2012-04-29 20:36:32 -0400 | 
| commit | e5a9b50e973aadff2e6303d01be8807b1fb9c325 (patch) | |
| tree | 8be7e13ffe0f53fa2f87e3acdb65a415a6c5b226 /src | |
| parent | 0e4a995213620630005a14f32c089879f7c0315e (diff) | |
| download | musl-e5a9b50e973aadff2e6303d01be8807b1fb9c325.tar.gz | |
fix typo in the x86_64 rounding asm
Diffstat (limited to 'src')
| -rw-r--r-- | src/math/x86_64/llrint.s | 2 | ||||
| -rw-r--r-- | src/math/x86_64/llrintf.s | 2 | ||||
| -rw-r--r-- | src/math/x86_64/lrint.s | 2 | ||||
| -rw-r--r-- | src/math/x86_64/lrintf.s | 2 | 
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 | 
