summaryrefslogtreecommitdiff
path: root/numpy/core/src/common
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-08-26 13:49:29 -0600
committerGitHub <noreply@github.com>2021-08-26 13:49:29 -0600
commitc6ac4dab50dad3ee0936fb4b765cf4f441874d33 (patch)
treef790a85e37bd242cdd20c1745ddb198167368d8d /numpy/core/src/common
parent58e3c4904a9c905604ed4498e9b231915d1ac3ff (diff)
parentaa0354e5b3bff381562aa7b83f544e7da442a7ab (diff)
downloadnumpy-c6ac4dab50dad3ee0936fb4b765cf4f441874d33.tar.gz
Merge pull request #19758 from HowJMay/remove-redundent-semicolon
MAINT: Remove redundant semicolon
Diffstat (limited to 'numpy/core/src/common')
-rw-r--r--numpy/core/src/common/simd/avx2/arithmetic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/common/simd/avx2/arithmetic.h b/numpy/core/src/common/simd/avx2/arithmetic.h
index e1b170863..ad9688338 100644
--- a/numpy/core/src/common/simd/avx2/arithmetic.h
+++ b/numpy/core/src/common/simd/avx2/arithmetic.h
@@ -284,7 +284,7 @@ NPY_FINLINE npy_uint32 npyv_sum_u32(npyv_u32 a)
{
__m256i s0 = _mm256_hadd_epi32(a, a);
s0 = _mm256_hadd_epi32(s0, s0);
- __m128i s1 = _mm256_extracti128_si256(s0, 1);;
+ __m128i s1 = _mm256_extracti128_si256(s0, 1);
s1 = _mm_add_epi32(_mm256_castsi256_si128(s0), s1);
return _mm_cvtsi128_si32(s1);
}