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
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user