From f3dc70092c073acc0bdfe6aa77979116f34e6b51 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 19 Jun 2008 17:18:39 +0000 Subject: [PATCH] Delete dead code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52494 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/DemoteRegToStack.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/Transforms/Utils/DemoteRegToStack.cpp b/lib/Transforms/Utils/DemoteRegToStack.cpp index bbe804fc551..c123c0301f7 100644 --- a/lib/Transforms/Utils/DemoteRegToStack.cpp +++ b/lib/Transforms/Utils/DemoteRegToStack.cpp @@ -134,10 +134,6 @@ AllocaInst* llvm::DemotePHIToStack(PHINode *P, Instruction *AllocaPoint) { } // Insert load in place of the phi and replace all uses. - BasicBlock::iterator InsertPt; - for (InsertPt = P->getParent()->getInstList().begin(); - isa(InsertPt); ++InsertPt) - ; /*noop */ Value *V = new LoadInst(Slot, P->getName()+".reload", P); P->replaceAllUsesWith(V);