Skip to content

Commit b04d869

Browse files
committed
clang-format
1 parent 84dff32 commit b04d869

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mlir/lib/Dialect/Vector/IR/VectorOps.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5511,8 +5511,10 @@ LogicalResult ShapeCastOp::verify() {
55115511
auto resultVectorType =
55125512
llvm::dyn_cast_or_null<VectorType>(getResult().getType());
55135513

5514-
if (!sourceVectorType) return failure();
5515-
if (!resultVectorType) return failure();
5514+
if (!sourceVectorType)
5515+
return failure();
5516+
if (!resultVectorType)
5517+
return failure();
55165518

55175519
// Check that element type is the same.
55185520
if (sourceVectorType.getElementType() != resultVectorType.getElementType())

0 commit comments

Comments
 (0)