From b816d1da6844396092bc9c2d2969bef35ae32d8f Mon Sep 17 00:00:00 2001 From: Marcus Asteborg Date: Sat, 13 Jun 2020 23:16:08 -0700 Subject: Fix trailing whitspace in previous commit Signed-off-by: Ralph Giles --- celt/float_cast.h | 6 +++--- 1 file 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 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) -- cgit v1.2.1