fix {typo, build failure} in r225760
authorRamkumar Ramachandra <artagnon@gmail.com>
Tue, 13 Jan 2015 04:17:47 +0000 (04:17 +0000)
committerRamkumar Ramachandra <artagnon@gmail.com>
Tue, 13 Jan 2015 04:17:47 +0000 (04:17 +0000)
llvm-svn: 225762

llvm/lib/Transforms/Utils/SimplifyCFG.cpp

index c8b6705..f6867c2 100644 (file)
@@ -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);