CodeGen: Adapt to change of PHI operand storage

Commit 133435 "Change how PHINodes store their operands" broke Polly. Fix this
breakage by adapting to the changes in the commit.

llvm-svn: 134434
This commit is contained in:
Tobias Grosser 2011-07-05 19:13:31 +00:00
parent 5a0f0fba30
commit 9611623d02
1 changed files with 0 additions and 3 deletions

View File

@ -727,9 +727,6 @@ public:
PN = Statement->getInductionVariableForDimension(Dimension);
const Value *V = PN;
if (PN->getNumOperands() == 2)
V = *(PN->use_begin());
if (VectorVMap)
(*VectorVMap)[vectorDim][V] = RHS;