[llvm] [AArch64][SVE] Add lowering for PARTIAL_REDUCE_U/SMLA to USDOT (PR #131327)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Mon May 12 01:21:18 PDT 2025
================
@@ -924,7 +924,8 @@ SDValue DAGTypeLegalizer::CreateStackStoreLoad(SDValue Op,
/// illegal ResNo in that case.
bool DAGTypeLegalizer::CustomLowerNode(SDNode *N, EVT VT, bool LegalizeResult) {
// See if the target wants to custom lower this node.
- if (TLI.getOperationAction(N->getOpcode(), VT) != TargetLowering::Custom)
+ unsigned Opcode = N->getOpcode();
+ if (TLI.getOperationAction(Opcode, VT) != TargetLowering::Custom)
----------------
sdesmalen-arm wrote:
nit: unnecessary change.
https://github.com/llvm/llvm-project/pull/131327
More information about the llvm-commits
mailing list