[llvm] [LoopIdiom] Fix a DL-related crash in optimizeCRCLoop (PR #161509)

Ramkumar Ramachandra via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 1 05:32:00 PDT 2025


================
@@ -1654,7 +1654,7 @@ bool LoopIdiomRecognize::optimizeCRCLoop(const PolynomialInfo &Info) {
                                     : LoByte(Builder, Indexer, "indexer.lo");
 
     // Always index into a GEP using the index type.
-    Indexer = Builder.CreateZExt(
+    Indexer = Builder.CreateZExtOrTrunc(
----------------
artagnon wrote:

I can change getLoByte to ZExtOrTrunc to the i8 type, which would be correct, but still unsure how this ZExt would work when the index-type is i1?

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


More information about the llvm-commits mailing list