[llvm] Update the base and index value for masked gather (PR #130920)
Rohit Aggarwal via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:21:46 PDT 2025
================
@@ -4905,6 +4905,11 @@ void SelectionDAGBuilder::visitMaskedScatter(const CallInst &I) {
Scale = DAG.getTargetConstant(1, sdl, TLI.getPointerTy(DAG.getDataLayout()));
}
+ if (!UniformBase) {
+ TLI.updateBaseAndIndex(Ptr, Base, Index, getCurSDLoc(), getValue(Ptr), DAG,
+ I.getParent());
----------------
rohitaggarwal007 wrote:
Hi @arsenm
Where should I place the code snippet so that it is applicable for X86 target?
https://github.com/llvm/llvm-project/pull/130920
More information about the llvm-commits
mailing list