We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dff32 commit b04d869Copy full SHA for b04d869
mlir/lib/Dialect/Vector/IR/VectorOps.cpp
@@ -5511,8 +5511,10 @@ LogicalResult ShapeCastOp::verify() {
5511
auto resultVectorType =
5512
llvm::dyn_cast_or_null<VectorType>(getResult().getType());
5513
5514
- if (!sourceVectorType) return failure();
5515
- if (!resultVectorType) return failure();
+ if (!sourceVectorType)
+ return failure();
5516
+ if (!resultVectorType)
5517
5518
5519
// Check that element type is the same.
5520
if (sourceVectorType.getElementType() != resultVectorType.getElementType())
0 commit comments