Skip to content

Commit 8f183f5

Browse files
committed
auto -> SDValue
1 parent 615cbaf commit 8f183f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13133,9 +13133,9 @@ SDValue DAGCombiner::foldPartialReduceAdd(SDNode *N) {
1313313133
TLI.getTypeToTransformTo(*Context, UnextOp1VT)))
1313413134
return SDValue();
1313513135

13136-
auto Constant = N->getOpcode() == ISD::PARTIAL_REDUCE_FMLA
13137-
? DAG.getConstantFP(1, DL, UnextOp1VT)
13138-
: DAG.getConstant(1, DL, UnextOp1VT);
13136+
SDValue Constant = N->getOpcode() == ISD::PARTIAL_REDUCE_FMLA
13137+
? DAG.getConstantFP(1, DL, UnextOp1VT)
13138+
: DAG.getConstant(1, DL, UnextOp1VT);
1313913139

1314013140
return DAG.getNode(NewOpcode, DL, N->getValueType(0), Acc, UnextOp1,
1314113141
Constant);

0 commit comments

Comments
 (0)