Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
authorMarcus Asteborg <maastebo@microsoft.com>2020-06-14 09:16:08 +0300
committerRalph Giles <giles@thaumas.net>2020-06-14 09:27:20 +0300
commitb816d1da6844396092bc9c2d2969bef35ae32d8f (patch)
tree9c6dfb6cd257f3b68d2eced7128bf2093e29d69a /celt
parent12c751e05ce240c37c90c8ea21ff8d7f0b9b8665 (diff)
Fix trailing whitspace in previous commit
Signed-off-by: Ralph Giles <giles@thaumas.net>
Diffstat (limited to 'celt')
-rw-r--r--celt/float_cast.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/celt/float_cast.h b/celt/float_cast.h
index 087f4546..9d34976e 100644
--- a/celt/float_cast.h
+++ b/celt/float_cast.h
@@ -72,12 +72,12 @@ static OPUS_INLINE opus_int32 float2int(float x) {return _mm_cvt_ss2si(_mm_set_s
#include <xmmintrin.h>
static OPUS_INLINE opus_int32 float2int(float value)
{
- /* _mm_load_ss will generate same code as _mm_set_ss
- ** in _MSC_VER >= 1914 /02 so keep __mm_load__ss
+ /* _mm_load_ss will generate same code as _mm_set_ss
+ ** in _MSC_VER >= 1914 /02 so keep __mm_load__ss
** for backward compatibility.
*/
return _mm_cvtss_si32(_mm_load_ss(&value));
- }
+ }
#elif (defined(_MSC_VER) && _MSC_VER >= 1400) && defined (_M_IX86)