Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
b066b962
Commit
b066b962
authored
Sep 28, 2016
by
Steinar Midtskogen
Committed by
Yaowu Xu
Oct 11, 2016
Browse files
Fix missing parentheses in v64_align()
Change-Id: I16469062853c101965f56002be30ebc5823975b1
parent
9d6a53b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
aom_dsp/simd/v64_intrinsics_x86.h
View file @
b066b962
...
...
@@ -89,7 +89,7 @@ SIMD_INLINE void v64_store_unaligned(void *p, v64 a) {
// The following function requires an immediate.
#if __OPTIMIZE__
#define v64_align(a, b, c) \
(c) ? _mm_srli_si128(_mm_unpacklo_epi64(b, a), (c)) : b
;
(
(c) ? _mm_srli_si128(_mm_unpacklo_epi64(b, a), (c)) : b
)
#else
#define v64_align(a, b, c) \
((c) ? v64_from_64((v64_u64(b) >> (c)*8) | (v64_u64(a) << (8 - (c)) * 8)) \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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