Fix trailing whitspace in previous commit

Signed-off-by: Ralph Giles <giles@thaumas.net>
This commit is contained in:
Marcus Asteborg 2020-06-13 23:16:08 -07:00 committed by Ralph Giles
parent 12c751e05c
commit b816d1da68
No known key found for this signature in database
GPG key ID: 9259A8F2D2D44C84

View file

@ -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)