Skip to content

Commit 252047a

Browse files
committed
Fix test WS
1 parent de7c49d commit 252047a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mlir/test/Dialect/Index/inliner-interface.mlir

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
// CHECK-LABEL: @main
44
func.func @main(%arg0: i32) -> index {
5-
// CHECK-NOT: call
6-
// CHECK: index.castu
7-
%0 = call @f(%arg0) : (i32) -> index
8-
return %0 : index
5+
// CHECK-NOT: call
6+
// CHECK: index.castu
7+
%0 = call @f(%arg0) : (i32) -> index
8+
return %0 : index
99
}
1010

1111
func.func @f(%arg0: i32) -> index {
12-
%0 = index.castu %arg0 : i32 to index
13-
return %0 : index
12+
%0 = index.castu %arg0 : i32 to index
13+
return %0 : index
1414
}

0 commit comments

Comments
 (0)