mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 03:34:25 +03:00
compile fixes for vsc port
This commit is contained in:
@@ -893,10 +893,10 @@ do { \
|
||||
#define CONFIRM_TEDDY(var, bucket, offset, reason, conf_fn) \
|
||||
do { \
|
||||
if (unlikely(diff128(var, ones128()))) { \
|
||||
u64a __attribute__((aligned(16))) vector[2]; \
|
||||
store128(vector, var); \
|
||||
u64a lo = vector[0]; \
|
||||
u64a hi = vector[1]; \
|
||||
u64a __attribute__((aligned(16))) vec[2]; \
|
||||
store128(vec, var); \
|
||||
u64a lo = vec[0]; \
|
||||
u64a hi = vec[1]; \
|
||||
CONF_CHUNK_64(lo, bucket, offset, reason, conf_fn); \
|
||||
CONF_CHUNK_64(hi, bucket, offset + 8, reason, conf_fn); \
|
||||
} \
|
||||
|
Reference in New Issue
Block a user