From 576727f57c911ef0aab82fd0fef2ec4c4450e147 Mon Sep 17 00:00:00 2001 From: Sylvain Laperche Date: Fri, 3 Aug 2018 10:17:35 +0200 Subject: [PATCH] fix a false positive Clang seems to have issue with `_mm256_storeu2_m128i` --- src/simd_256_u32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simd_256_u32.h b/src/simd_256_u32.h index a888e2c8..383aca05 100644 --- a/src/simd_256_u32.h +++ b/src/simd_256_u32.h @@ -320,7 +320,7 @@ inline aint128 m256i_to_uint128(m256i v) { aint128 hi, lo; _mm256_storeu2_m128i((m128i*)&hi, (m128i*)&lo, v); - return lo; + return lo; // NOLINT(clang-analyzer-core.uninitialized.UndefReturn) } inline __uint128_t add(__uint128_t a, __uint128_t b)