File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -533,7 +533,7 @@ LogicalResult BlockMergeCluster::addToCluster(BlockEquivalenceData &blockData) {
533
533
534
534
if (!isValidSuccessorArg (leaderBlock, lhsOperand) ||
535
535
!isValidSuccessorArg (mergeBlock, rhsOperand))
536
- return mlir:: failure ();
536
+ return failure ();
537
537
538
538
mismatchedOperands.emplace_back (opI, operand);
539
539
continue ;
Original file line number Diff line number Diff line change @@ -348,9 +348,8 @@ TestBranchOp::getMutableSuccessorOperands(unsigned index) {
348
348
Optional<MutableOperandRange>
349
349
TestProducingBranchOp::getMutableSuccessorOperands (unsigned index) {
350
350
assert (index <= 1 && " invalid successor index" );
351
- if (index == 1 ) {
351
+ if (index == 1 )
352
352
return getFirstOperandsMutable ();
353
- }
354
353
return getSecondOperandsMutable ();
355
354
}
356
355
You can’t perform that action at this time.
0 commit comments