1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Rename the variable to fix a warning. Thanks Andy Gibbs.

llvm-svn: 184749
This commit is contained in:
Nadav Rotem 2013-06-24 15:59:47 +00:00
parent b24062a89a
commit eff545235c

View File

@ -872,8 +872,8 @@ bool FuncSLP::vectorizeStoreChain(ArrayRef<Value *> Chain, int CostThreshold) {
vectorizeTree(Operands);
// Remove the scalar stores.
for (int i = 0, e = VF; i < e; ++i)
cast<Instruction>(Operands[i])->eraseFromParent();
for (int j = 0, e = VF; j < e; ++j)
cast<Instruction>(Operands[j])->eraseFromParent();
// Move to the next bundle.
i += VF - 1;