]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
nits
authorapostolos <apostolos.tapsas@vectorcamp.gr>
Tue, 26 Oct 2021 08:55:02 +0000 (11:55 +0300)
committerapostolos <apostolos.tapsas@vectorcamp.gr>
Tue, 26 Oct 2021 08:55:02 +0000 (11:55 +0300)
unit/internal/simd_utils.cpp

index 1fc6224b19d78169730f39fba7edf5c3ac8dfba2..1f16adcdeba34404d4ff93126143f4faea38f88a 100644 (file)
@@ -854,9 +854,9 @@ TEST(SimdUtilsTest, pshufb_m128) {
 
     /* On Intel, if bit 0x80 is set, then result is zero, otherwise which the lane it is &0xf.
        In NEON or PPC, if >=16, then the result is zero, otherwise it is that lane.
-       Thus bellow we have to check thah case to NEON or PPC.  */
+       Thus bellow we have to check that case to NEON or PPC.  */
     
-    /*Insure that vec2 has at least 1 or more 0x80*/
+    /*Insure that vec3 has at least 1 or more 0x80 elements*/
     u8 vec3[16] = {0};
     vec3[15] = 0x80;