test vec_rl

This commit is contained in:
Folkert de Vries 2025-03-02 17:53:07 +01:00 committed by Amanieu d'Antras
parent 0b0f5193cb
commit 167b13e6d3

View file

@ -3647,11 +3647,6 @@ mod tests {
[0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 16],
[-4, -2, -1, -8] }
test_vec_2! { test_vec_rl, vec_rl, u32x4,
[0x12345678, 0x9ABCDEF0, 0x0F0F0F0F, 0x12345678],
[4, 8, 12, 68],
[0x23456781, 0xBCDEF09A, 0xF0F0F0F0, 0x23456781] }
test_vec_1! { test_vec_reve_f32, vec_reve, f32x4,
[0.1, 0.5, 0.6, 0.9],
[0.9, 0.6, 0.5, 0.1]
@ -4061,4 +4056,9 @@ mod tests {
[30000, 25000, 20000, 15000, 31, 63, 127, 255],
[255, 255, 255, 255, 16, 8, 4, 2, 255, 255, 255, 255, 31, 63, 127, 255]
}
test_vec_2! { test_vec_rl, vec_rl, u32x4,
[0x12345678, 0x9ABCDEF0, 0x0F0F0F0F, 0x12345678],
[4, 8, 12, 68],
[0x23456781, 0xBCDEF09A, 0xF0F0F0F0, 0x23456781] }
}