Skip to content

Commit

Permalink
[SimplifyCFG] fix debug print formatting; NFC
Browse files Browse the repository at this point in the history
  • Loading branch information
rotateright committed Mar 13, 2020
1 parent e30c257 commit 51e53af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Transforms/Utils/SimplifyCFG.cpp
Expand Up @@ -2532,8 +2532,8 @@ static bool SimplifyCondBranchToTwoReturns(BranchInst *BI,
(void)RI;

LLVM_DEBUG(dbgs() << "\nCHANGING BRANCH TO TWO RETURNS INTO SELECT:"
<< "\n " << *BI << "NewRet = " << *RI << "TRUEBLOCK: "
<< *TrueSucc << "FALSEBLOCK: " << *FalseSucc);
<< "\n " << *BI << "\nNewRet = " << *RI << "\nTRUEBLOCK: "
<< *TrueSucc << "\nFALSEBLOCK: " << *FalseSucc);

EraseTerminatorAndDCECond(BI);

Expand Down

0 comments on commit 51e53af

Please sign in to comment.