[llvm] [SelectionDAG] Add PARTIAL_REDUCE_U/SMLA ISD Nodes (PR #125207)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 08:46:35 PST 2025
================
@@ -8118,15 +8118,17 @@ void SelectionDAGBuilder::visitIntrinsicCall(const CallInst &I,
return;
}
case Intrinsic::experimental_vector_partial_reduce_add: {
+ SDValue Acc = getValue(I.getOperand(0));
+ EVT AccVT = Acc.getValueType();
+ SDValue Input = getValue(I.getOperand(1));
+ EVT InputVT = Input.getValueType();
----------------
paulwalker-arm wrote:
Can you move these after the if block given that's where they are used.
https://github.com/llvm/llvm-project/pull/125207
More information about the llvm-commits
mailing list