[llvm] [PreISelIntrinsicLowering] Zext/trunc count parameter as necessary for memset_pattern16 emission (PR #129239)

Alex Bradbury via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 04:09:50 PDT 2025


================
@@ -394,11 +394,12 @@ bool PreISelIntrinsicLowering::expandMemIntrinsicUses(Function &F) const {
       Module *M = Memset->getModule();
       const DataLayout &DL = Memset->getDataLayout();
 
+      Type *DestPtrTy = Memset->getRawDest()->getType();
+      Type *IntIdxTy = DL.getIndexType(DestPtrTy);
----------------
asb wrote:

Apologies for missing this, now updated.

https://github.com/llvm/llvm-project/pull/129239


More information about the llvm-commits mailing list