clang-format fixes
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
weaselab/conflict-set/pipeline/head There was a failure building this commit

This commit is contained in:
2024-06-29 22:21:50 -07:00
parent 0b839b9d7e
commit fd3ea2c2a8

View File

@@ -39,9 +39,9 @@ limitations under the License.
#endif
#if defined(__has_feature)
# if __has_feature(thread_sanitizer)
#if __has_feature(thread_sanitizer)
#define __SANITIZE_THREAD__
# endif
#endif
#endif
#include <memcheck.h>
@@ -1776,8 +1776,8 @@ downLeftSpine:
#ifndef __SANITIZE_THREAD__
__attribute__((target("default")))
#endif
uint32_t compare16_32bit(const InternalVersionT *vs,
InternalVersionT rv) {
uint32_t
compare16_32bit(const InternalVersionT *vs, InternalVersionT rv) {
uint32_t compared = 0;
__m128i w[4];
memcpy(w, vs, sizeof(w));
@@ -1794,8 +1794,8 @@ uint32_t compare16_32bit(const InternalVersionT *vs,
}
#ifndef __SANITIZE_THREAD__
__attribute__((target("avx512f"))) uint32_t compare16_32bit(const InternalVersionT *vs,
InternalVersionT rv) {
__attribute__((target("avx512f"))) uint32_t
compare16_32bit(const InternalVersionT *vs, InternalVersionT rv) {
__m512i w;
memcpy(&w, vs, sizeof(w));
uint32_t r;