Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tim-Philipp Müller
Opus
Commits
b816d1da
Verified
Commit
b816d1da
authored
Jun 13, 2020
by
Marcus Asteborg
Committed by
Ralph Giles
Jun 13, 2020
Browse files
Fix trailing whitspace in previous commit
Signed-off-by:
Ralph Giles
<
giles@thaumas.net
>
parent
12c751e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
celt/float_cast.h
View file @
b816d1da
...
...
@@ -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)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment