Fix clang-format
Some checks failed
Tests / Clang total: 1039, passed: 1039
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / SIMD fallback total: 1039, passed: 1039
Tests / 32-bit versions total: 1039, passed: 1039
Tests / Release [gcc] total: 1039, passed: 1039
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 775, passed: 775
Tests / Coverage total: 780, passed: 780
weaselab/conflict-set/pipeline/head There was a failure building this commit

This commit is contained in:
2024-06-29 15:11:40 -07:00
parent 461e07822a
commit 94da4c72a5

View File

@@ -1904,7 +1904,9 @@ inline __attribute((always_inline)) bool scan16(const InternalVersionT *vs,
const auto zero = _mm_setzero_si128();
uint32_t conflict = 0;
for (int i = 0; i < 4; ++i) {
conflict |= _mm_movemask_ps(_mm_cmpgt_epi32(_mm_sub_epi32(w4[i], rvVec), zero)) << (i * 4);
conflict |=
_mm_movemask_ps(_mm_cmpgt_epi32(_mm_sub_epi32(w4[i], rvVec), zero))
<< (i * 4);
}
conflict &= (1 << end) - 1;
conflict >>= begin;