Skip to content

Commit e3caf12

Browse files
committed
format
1 parent ab2025b commit e3caf12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/CodeGen/BranchFolding.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1794,8 +1794,7 @@ bool BranchFolder::OptimizeBlock(MachineBasicBlock *MBB) {
17941794
// block.
17951795
MachineBasicBlock *PrevTBB = nullptr, *PrevFBB = nullptr;
17961796
SmallVector<MachineOperand, 4> PrevCond;
1797-
if (FallThrough != MF.end() &&
1798-
!FallThrough->isEHPad() &&
1797+
if (FallThrough != MF.end() && !FallThrough->isEHPad() &&
17991798
!FallThrough->isInlineAsmBrIndirectTarget() &&
18001799
!TII->analyzeBranch(PrevBB, PrevTBB, PrevFBB, PrevCond, true) &&
18011800
PrevBB.isSuccessor(&*FallThrough)) {

0 commit comments

Comments
 (0)