Skip to content

Commit 3b8b16c

Browse files
committed
Formatting
1 parent 68b398a commit 3b8b16c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/lib/Transforms/RemoveDeadValues.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -748,8 +748,7 @@ void RemoveDeadValues::runOnOperation() {
748748
if (auto funcOp = dyn_cast<FunctionOpInterface>(op)) {
749749
processFuncOp(funcOp, module, la, deadVals, finalCleanupList);
750750
} else if (auto regionBranchOp = dyn_cast<RegionBranchOpInterface>(op)) {
751-
processRegionBranchOp(regionBranchOp, la, deadVals,
752-
finalCleanupList);
751+
processRegionBranchOp(regionBranchOp, la, deadVals, finalCleanupList);
753752
} else if (auto branchOp = dyn_cast<BranchOpInterface>(op)) {
754753
processBranchOp(branchOp, la, deadVals, finalCleanupList);
755754
} else if (op->hasTrait<::mlir::OpTrait::IsTerminator>()) {

0 commit comments

Comments
 (0)