1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Fix a build error.

llvm-svn: 172971
This commit is contained in:
Nadav Rotem 2013-01-20 09:39:17 +00:00
parent 65d4a2e470
commit 7c9244fdca

View File

@ -1593,7 +1593,7 @@ InnerLoopVectorizer::vectorizeBlockInLoop(LoopVectorizationLegality *Legal,
// optimizations will clean it up. // optimizations will clean it up.
VectorParts Cond = createEdgeMask(P->getIncomingBlock(0), VectorParts Cond = createEdgeMask(P->getIncomingBlock(0),
P->getParent()); P->getParent());
for (unsigned part = 0; part < UF; ++part) { for (unsigned part = 0; part < UF; ++part) {
VectorParts &In0 = getVectorValue(P->getIncomingValue(0)); VectorParts &In0 = getVectorValue(P->getIncomingValue(0));
VectorParts &In1 = getVectorValue(P->getIncomingValue(1)); VectorParts &In1 = getVectorValue(P->getIncomingValue(1));
@ -2713,7 +2713,8 @@ LoopVectorizationCostModel::selectVectorizationFactor(bool OptForSize,
} }
DEBUG(dbgs() << "LV: Selecting VF = : "<< Width << ".\n"); DEBUG(dbgs() << "LV: Selecting VF = : "<< Width << ".\n");
return std::make_pair<unsigned, unsigned>(Width, VF * Cost); unsigned LoopCost = VF * Cost;
return std::make_pair<unsigned, unsigned>(Width, LoopCost);
} }
unsigned LoopVectorizationCostModel::getWidestType() { unsigned LoopVectorizationCostModel::getWidestType() {