[SimpleLoopUnswitch] Remove debug dump.

llvm-svn: 348267
This commit is contained in:
Alina Sbirlea 2018-12-04 14:43:24 +00:00
parent 0a6b5b653e
commit 797935f4f1
1 changed files with 1 additions and 3 deletions

View File

@ -2346,10 +2346,8 @@ turnGuardIntoBranch(IntrinsicInst *GI, Loop &L,
LLVM_DEBUG(dbgs() << "Turning " << *GI << " into a branch.\n");
BasicBlock *CheckBB = GI->getParent();
if (MSSAU && VerifyMemorySSA) {
if (MSSAU && VerifyMemorySSA)
MSSAU->getMemorySSA()->verifyMemorySSA();
MSSAU->getMemorySSA()->dump();
}
// Remove all CheckBB's successors from DomTree. A block can be seen among
// successors more than once, but for DomTree it should be added only once.