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

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 06:31:40 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);
----------------
nikic wrote:

As we're emitting a libcall here, it would be preferable to use TLI.getSizeTType() instead. Can also use the getAsSizeT helper for the ConstantInt below.

It will ultimately produce the same type, but this way we're not baking in new assumptions.

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


More information about the llvm-commits mailing list