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/math/x86_64/lrintf.s | |
parent | 0e4a995213620630005a14f32c089879f7c0315e (diff) | |
download | musl-e5a9b50e973aadff2e6303d01be8807b1fb9c325.tar.gz |
fix typo in the x86_64 rounding asm
Diffstat (limited to 'src/math/x86_64/lrintf.s')
-rw-r--r-- | src/math/x86_64/lrintf.s | 2 |
1 files changed, 1 insertions, 1 deletions
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 |