]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
Minor fix
authorDanila Kutenin <danilak@google.com>
Sun, 26 Jun 2022 23:02:02 +0000 (23:02 +0000)
committerDanila Kutenin <danilak@google.com>
Sun, 26 Jun 2022 23:02:02 +0000 (23:02 +0000)
src/util/arch/arm/simd_utils.h

index 8d8c4456c99e193abd59c00bad3183493d745b00..2a4f9c16d2584bd64328fd6613fd0176110df9b3 100644 (file)
@@ -380,7 +380,7 @@ static really_inline m128 eq64_m128(m128 a, m128 b) {
 }
 
 static really_inline u32 movemask128(m128 a) {
-    ruint8x16_t input = vreinterpretq_u8_s32(a);
+    uint8x16_t input = vreinterpretq_u8_s32(a);
     uint16x8_t high_bits = vreinterpretq_u16_u8(vshrq_n_u8(input, 7));
     uint32x4_t paired16 =
         vreinterpretq_u32_u16(vsraq_n_u16(high_bits, high_bits, 7));