Skip to content

Commit 039e86e

Browse files
committed
Fix failing test
1 parent 8fc5dfb commit 039e86e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/test/Target/LLVMIR/openmp-dist_schedule.mlir

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
llvm.func @distribute_dist_schedule_chunk_size(%lb : i32, %ub : i32, %step : i32, %x : i32) {
66
// CHECK: call void @[[RUNTIME_FUNC:.*]](ptr @1, i32 %omp_global_thread_num, i32 91, ptr %p.lastiter, ptr %p.lowerbound, ptr %p.upperbound, ptr %p.stride, i32 1, i32 1024)
77
// We want to make sure that the next call is not another init builder.
8-
// CHECK-NEXT-NOT: call void @[[RUNTIME_FUNC]]
8+
// CHECK-NOT: call void @[[RUNTIME_FUNC]]
99
%1 = llvm.mlir.constant(1024: i32) : i32
1010
omp.distribute dist_schedule_static dist_schedule_chunk_size(%1 : i32) {
1111
omp.loop_nest (%iv) : i32 = (%lb) to (%ub) step (%step) {
@@ -24,7 +24,7 @@ llvm.func @distribute_dist_schedule_chunk_size(%lb : i32, %ub : i32, %step : i32
2424
llvm.func @distribute_dist_schedule(%lb : i32, %ub : i32, %step : i32, %x : i32) {
2525
// CHECK: call void @[[RUNTIME_FUNC:.*]](ptr @1, i32 %omp_global_thread_num, i32 92, ptr %p.lastiter, ptr %p.lowerbound, ptr %p.upperbound, ptr %p.stride, i32 1, i32 0)
2626
// We want to make sure that the next call is not another init builder.
27-
// CHECK-NEXT-NOT: call void @[[RUNTIME_FUNC]]
27+
// CHECK-NOT: call void @[[RUNTIME_FUNC]]
2828
omp.distribute dist_schedule_static {
2929
omp.loop_nest (%iv) : i32 = (%lb) to (%ub) step (%step) {
3030
omp.yield

0 commit comments

Comments
 (0)