Fix the index calculations for the extractvalue lowering code.

llvm-svn: 52517
This commit is contained in:
Dan Gohman 2008-06-20 00:54:19 +00:00
parent c7a32fc8ca
commit 44b2c57e2b
1 changed files with 2 additions and 2 deletions

View File

@ -2739,8 +2739,8 @@ void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) {
// Copy out the selected value(s).
for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i)
Values[i - LinearIndex] =
OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(i)) :
SDOperand(Agg.Val, Agg.ResNo + i - LinearIndex);
OutOfUndef ? DAG.getNode(ISD::UNDEF, Agg.Val->getValueType(Agg.ResNo + i)) :
SDOperand(Agg.Val, Agg.ResNo + i);
setValue(&I, DAG.getNode(ISD::MERGE_VALUES,
DAG.getVTList(&ValValueVTs[0], NumValValues),