Fix a regression in InstCombine/xor.ll
[oota-llvm.git] / lib / CodeGen / BranchFolding.cpp
index 0a6bd39ee6a984febf5db4128cf64a98d68718d6..af2b72501733bcd477e5576adf7ffccee3505be3 100644 (file)
@@ -96,7 +96,7 @@ static void ReplaceUsesOfBlockWith(MachineBasicBlock *BB,
 
   // If BB falls through into Old, insert an unconditional branch to New.
   MachineFunction::iterator BBSucc = BB; ++BBSucc;
-  if (&*BBSucc == Old)
+  if (BBSucc != BB->getParent()->end() && &*BBSucc == Old)
     TII.insertGoto(*BB, *New);
 
   std::vector<MachineBasicBlock*> Succs(BB->succ_begin(), BB->succ_end());