Skip to content

Commit 32920ad

Browse files
committed
add type to returned value (and actually run test this time to check changes are valid)
1 parent 6022501 commit 32920ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/Dialect/Vector/ops.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ func.func @shape_cast(%arg0 : vector<5x1x3x2xf32>,
572572
func.func @shape_cast_general_reshape(%arg0 : vector<2x3xf32>) -> (vector<3x1x2xf32>) {
573573
// CHECK: vector.shape_cast %{{.*}} : vector<2x3xf32> to vector<3x1x2xf32>
574574
%0 = vector.shape_cast %arg0 : vector<2x3xf32> to vector<3x1x2xf32>
575-
return %0
575+
return %0 : vector<3x1x2xf32>
576576
}
577577

578578
// CHECK-LABEL: @shape_cast_0d

0 commit comments

Comments
 (0)