Allow disjoint flag in codegen test

This commit is contained in:
Nikita Popov 2024-01-22 10:13:06 +01:00
parent e35a56d96f
commit 823e8b041a

View File

@ -10,7 +10,7 @@
pub fn short_integer_map(x: [u32; 8]) -> [u32; 8] {
// CHECK: load <8 x i32>
// CHECK: shl <8 x i32>
// CHECK: or <8 x i32>
// CHECK: or{{( disjoint)?}} <8 x i32>
// CHECK: store <8 x i32>
x.map(|x| 2 * x + 1)
}