Reduce the size of the Parts vector.

llvm-svn: 55483
This commit is contained in:
Rafael Espindola 2008-08-28 18:29:58 +00:00
parent d8a82b75e2
commit 6c8a99a778
1 changed files with 4 additions and 3 deletions

View File

@ -4014,7 +4014,7 @@ SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
unsigned NumRegs = TLI->getNumRegisters(ValueVT); unsigned NumRegs = TLI->getNumRegisters(ValueVT);
MVT RegisterVT = RegVTs[Value]; MVT RegisterVT = RegVTs[Value];
Parts.resize(Part + NumRegs); Parts.resize(NumRegs);
for (unsigned i = 0; i != NumRegs; ++i) { for (unsigned i = 0; i != NumRegs; ++i) {
SDValue P; SDValue P;
if (Flag == 0) if (Flag == 0)
@ -4067,12 +4067,13 @@ SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG,
} }
} }
Parts[Part+i] = P; Parts[i] = P;
} }
Values[Value] = getCopyFromParts(DAG, &Parts[Part], NumRegs, RegisterVT, Values[Value] = getCopyFromParts(DAG, Parts.begin(), NumRegs, RegisterVT,
ValueVT); ValueVT);
Part += NumRegs; Part += NumRegs;
Parts.clear();
} }
return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()), return DAG.getMergeValues(DAG.getVTList(&ValueVTs[0], ValueVTs.size()),