syntax fixes

This commit is contained in:
Konstantinos Margaritis 2021-06-23 22:20:01 +03:00 committed by Konstantinos Margaritis
parent 8b09ecfe48
commit 5297ed5038

View File

@ -272,7 +272,7 @@ TEST(SuperVectorUtilsTest,pshufbc) {
printv_u8("v2", v2); \ printv_u8("v2", v2); \
printv_u8("v_aligned", v_aligned); \ printv_u8("v_aligned", v_aligned); \
for (size_t i=0; i<16; i++) { \ for (size_t i=0; i<16; i++) { \
ASSERT_EQ(v_aligned.u.u8[i], vec[16 -l +i]); \ ASSERT_EQ(v_aligned.u.u8[i], vec[16 -l + i]); \
} \ } \
} }