aboutsummaryrefslogtreecommitdiff
path: root/include/xxh3.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-12 16:33:20 +0200
committervan Hauser <vh@thc.org>2020-06-12 16:33:20 +0200
commit40aca0b6b398d8de0ecc17cf075e0eb79ec15d81 (patch)
tree658ee93327c9bcb29fad4e038c6b1c960e28d303 /include/xxh3.h
parenta632c00b0d023b8a40d09839fbb2662da1cb5d37 (diff)
downloadafl++-40aca0b6b398d8de0ecc17cf075e0eb79ec15d81.tar.gz
fix for checksums
Diffstat (limited to 'include/xxh3.h')
-rw-r--r--include/xxh3.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/xxh3.h b/include/xxh3.h
index 54d5bf60..2354bde9 100644
--- a/include/xxh3.h
+++ b/include/xxh3.h
@@ -350,6 +350,7 @@
(outHi) = vget_high_u32(vreinterpretq_u32_u64(in)); \
\
} while (0)
+
#else
#define XXH_SPLIT_IN_PLACE(in, outLo, outHi) \
do { \
@@ -358,6 +359,7 @@
(outHi) = vshrn_n_u64((in), 32); \
\
} while (0)
+
#endif
#endif /* XXH_VECTOR == XXH_NEON */
@@ -1638,7 +1640,7 @@ XXH_FORCE_INLINE void XXH3_accumulate_512_vsx(void *XXH_RESTRICT acc,
} else { /* XXH3_acc_128bits */
- /* swap high and low halves */
+ /* swap high and low halves */
#ifdef __s390x__
xxh_u64x2 const data_swapped = vec_permi(data_vec, data_vec, 2);
#else