[llvm] [LoopIdiom] Select llvm.experimental.memset.pattern intrinsic rather than memset_pattern16 libcall (PR #126736)

Alex Bradbury via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 5 05:34:34 PST 2025


================
@@ -1154,7 +1154,7 @@ bool LoopIdiomRecognize::processLoopStridedStore(
                                               PatternValue, ".memset_pattern");
       GV->setUnnamedAddr(
           GlobalValue::UnnamedAddr::Global); // Ok to merge these.
-      GV->setAlignment(Align(PatternArgTy->getPrimitiveSizeInBits()));
+      GV->setAlignment(Align(PatternArgTy->getPrimitiveSizeInBits() / 8));
----------------
asb wrote:

The logic to create a GlobalVariable isn't needed any more, so I've now dropped this whole bit.

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


More information about the llvm-commits mailing list