@@ -2060,8 +2060,9 @@ _mm256_sign_epi32(__m256i __a, __m256i __b)
20602060// / \param imm
20612061// / An unsigned immediate value specifying the shift count (in bytes).
20622062// / \returns A 256-bit integer vector containing the result.
2063- #define _mm256_slli_si256 (a, imm ) \
2064- ((__m256i)__builtin_ia32_pslldqi256_byteshift((__v32qi)(__m256i)(a), (int )(imm)))
2063+ #define _mm256_slli_si256 (a, imm ) \
2064+ ((__m256i)__builtin_ia32_pslldqi256_byteshift((__v32qi)(__m256i)(a), \
2065+ (int )(imm)))
20652066
20662067// / Shifts each 128-bit half of the 256-bit integer vector \a a left by
20672068// / \a imm bytes, shifting in zero bytes, and returns the result. If \a imm
@@ -2080,8 +2081,9 @@ _mm256_sign_epi32(__m256i __a, __m256i __b)
20802081// / \param imm
20812082// / An unsigned immediate value specifying the shift count (in bytes).
20822083// / \returns A 256-bit integer vector containing the result.
2083- #define _mm256_bslli_epi128 (a, imm ) \
2084- ((__m256i)__builtin_ia32_pslldqi256_byteshift((__v32qi)(__m256i)(a), (int )(imm)))
2084+ #define _mm256_bslli_epi128 (a, imm ) \
2085+ ((__m256i)__builtin_ia32_pslldqi256_byteshift((__v32qi)(__m256i)(a), \
2086+ (int )(imm)))
20852087
20862088// / Shifts each 16-bit element of the 256-bit vector of [16 x i16] in \a __a
20872089// / left by \a __count bits, shifting in zero bits, and returns the result.
@@ -2299,8 +2301,9 @@ _mm256_sra_epi32(__m256i __a, __m128i __count)
22992301// / \param imm
23002302// / An unsigned immediate value specifying the shift count (in bytes).
23012303// / \returns A 256-bit integer vector containing the result.
2302- #define _mm256_srli_si256 (a, imm ) \
2303- ((__m256i)__builtin_ia32_psrldqi256_byteshift((__v32qi)(__m256i)(a), (int )(imm)))
2304+ #define _mm256_srli_si256 (a, imm ) \
2305+ ((__m256i)__builtin_ia32_psrldqi256_byteshift((__v32qi)(__m256i)(a), \
2306+ (int )(imm)))
23042307
23052308// / Shifts each 128-bit half of the 256-bit integer vector in \a a right by
23062309// / \a imm bytes, shifting in zero bytes, and returns the result. If
@@ -2319,8 +2322,9 @@ _mm256_sra_epi32(__m256i __a, __m128i __count)
23192322// / \param imm
23202323// / An unsigned immediate value specifying the shift count (in bytes).
23212324// / \returns A 256-bit integer vector containing the result.
2322- #define _mm256_bsrli_epi128 (a, imm ) \
2323- ((__m256i)__builtin_ia32_psrldqi256_byteshift((__v32qi)(__m256i)(a), (int )(imm)))
2325+ #define _mm256_bsrli_epi128 (a, imm ) \
2326+ ((__m256i)__builtin_ia32_psrldqi256_byteshift((__v32qi)(__m256i)(a), \
2327+ (int )(imm)))
23242328
23252329// / Shifts each 16-bit element of the 256-bit vector of [16 x i16] in \a __a
23262330// / right by \a __count bits, shifting in zero bits, and returns the result.
0 commit comments