[llvm] [SeparateConstOffsetFromGEP] Preserve inbounds flag based on ValueTracking (PR #130617)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 14:47:39 PDT 2025


================
@@ -1079,6 +1081,8 @@ bool SeparateConstOffsetFromGEP::splitGEP(GetElementPtrInst *GEP) {
         // and the old index if they are not used.
         RecursivelyDeleteTriviallyDeadInstructions(UserChainTail);
         RecursivelyDeleteTriviallyDeadInstructions(OldIdx);
+        MayRecoverInbounds =
+            MayRecoverInbounds && computeKnownBits(NewIdx, *DL).isNonNegative();
----------------
nikic wrote:

Could use isKnownNonNegative() here.

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


More information about the llvm-commits mailing list