From: Ramkumar Ramachandra Date: Tue, 13 Jan 2015 04:17:47 +0000 (+0000) Subject: fix {typo, build failure} in r225760 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=65535d38426ee9972e8606fb8efab4e74c5f4157;p=oota-llvm.git fix {typo, build failure} in r225760 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225762 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index c8b6705ab5e..f6867c24ee5 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -4587,7 +4587,7 @@ bool SimplifyCFGOpt::run(BasicBlock *BB) { // Remove basic blocks that have no predecessors (except the entry block)... // or that just have themself as a predecessor. These are unreachable. - if ((pred_emtpy(BB) && + if ((pred_empty(BB) && BB != &BB->getParent()->getEntryBlock()) || BB->getSinglePredecessor() == BB) { DEBUG(dbgs() << "Removing BB: \n" << *BB);