File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/CodeGen/SelectionDAG Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12679,10 +12679,10 @@ SDValue DAGCombiner::foldPartialReduceMLAMulOp(SDNode *N) {
12679
12679
RHSExtOp);
12680
12680
}
12681
12681
12682
- // Makes PARTIAL_REDUCE_*MLA(Acc, ZEXT(UnextOp1 ), Splat (1)) into
12683
- // PARTIAL_REDUCE_UMLA(Acc, Op, TRUNC(Splat (1)))
12684
- // Makes PARTIAL_REDUCE_*MLA(Acc, SEXT(UnextOp1 ), Splat (1)) into
12685
- // PARTIAL_REDUCE_SMLA(Acc, Op, TRUNC(Splat (1)))
12682
+ // Makes partial.reduce.umla(acc, zext(op1 ), splat (1)) into
12683
+ // partial.reduce.umla(acc, op, splat(trunc (1)))
12684
+ // Makes partial.reduce.smla(acc, sext(op1 ), splat (1)) into
12685
+ // partial.reduce.smla(acc, op, splat(trunc (1)))
12686
12686
SDValue DAGCombiner::foldPartialReduceMLANoMulOp(SDNode *N) {
12687
12687
SDLoc DL(N);
12688
12688
SDValue Acc = N->getOperand(0);
You can’t perform that action at this time.
0 commit comments