We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e1767 commit 46688aeCopy full SHA for 46688ae
coresimd/powerpc/altivec.rs
@@ -552,14 +552,14 @@ mod tests {
552
[0x00, 0x01, 0x10, 0x11, 0x02, 0x03, 0x12, 0x13,
553
0x04, 0x05, 0x14, 0x15, 0x06, 0x07, 0x16, 0x17],
554
[0, 1, 100, 101, 2, 3, 102, 103, 4, 5, 104, 105, 6, 7, 106, 107]}
555
+
556
test_vec_perm!{test_vec_perm_m8x16,
557
m8x16, vector_bool_char,
558
[false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false],
559
[true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true],
560
561
562
[false, false, true, true, false, false, true, true, false, false, true, true, false, false, true, true]}
-
563
test_vec_perm!{test_vec_perm_u16x8,
564
u16x8, vector_unsigned_short,
565
[0, 1, 2, 3, 4, 5, 6, 7],
coresimd/simd.rs
@@ -121,7 +121,7 @@ simd_m_ty!(m8x16[i8]:
121
i8, i8, i8, i8, i8, i8, i8, i8
122
| x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15
123
);
124
-simd_ty!(m16x8[i16]: i16, i16, i16, i16, i16, i16, i16, i16 | x0, x1, x2, x3, x4, x5, x6, x7);
+simd_m_ty!(m16x8[i16]: i16, i16, i16, i16, i16, i16, i16, i16 | x0, x1, x2, x3, x4, x5, x6, x7);
125
simd_m_ty!(m32x4[i32]: i32, i32, i32, i32 | x0, x1, x2, x3);
126
127
0 commit comments