Skip to content

Commit eba4c68

Browse files
authored
[SYCL][NativeCPU] Update lit test. (intel#16558)
Since merging in upstream LLVM changes, we now see a splat.
1 parent 49fd770 commit eba4c68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sycl/test/check_device_code/native_cpu/vectorization.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ int main() {
1818
sycl::range<1> r(1);
1919
deviceQueue.submit([&](sycl::handler &h) {
2020
h.parallel_for<Test1>(r, [=](sycl::id<1> id) { acc[id[0]] = 42; });
21-
// CHECK-DEFAULT: store <8 x i32> <i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42>
22-
// CHECK-16: store <16 x i32> <i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42, i32 42>
23-
// CHECK-4: store <4 x i32> <i32 42, i32 42, i32 42, i32 42>
21+
// CHECK-DEFAULT: store <8 x i32> splat (i32 42)
22+
// CHECK-16: store <16 x i32> splat (i32 42)
23+
// CHECK-4: store <4 x i32> splat (i32 42)
2424
// CHECK-O0: store i32 42
2525
// CHECK-O0-NOT: store <{{.*}}>
2626
// CHECK-DISABLE: store i32 42

0 commit comments

Comments
 (0)