80-column violation.

llvm-svn: 59718
This commit is contained in:
Bill Wendling 2008-11-20 07:24:30 +00:00
parent 51e015f9bb
commit 165b45d385
1 changed files with 4 additions and 2 deletions

View File

@ -2549,8 +2549,10 @@ 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.getNode()->getValueType(Agg.getResNo() + i)) :
SDValue(Agg.getNode(), Agg.getResNo() + i);
OutOfUndef ?
DAG.getNode(ISD::UNDEF,
Agg.getNode()->getValueType(Agg.getResNo() + i)) :
SDValue(Agg.getNode(), Agg.getResNo() + i);
setValue(&I, DAG.getMergeValues(DAG.getVTList(&ValValueVTs[0], NumValValues),
&Values[0], NumValValues));