[llvm] Reapply "[ValueTracking] Propagate sign information out of loop" (PR #182512)

Kshitij Paranjape via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 21 05:06:27 PST 2026


================
@@ -5924,6 +5924,36 @@ void computeKnownFPClass(const Value *V, const APInt &DemandedElts,
       }
     }
 
+    // Look for the case of a for loop which has a positive
+    // initial value and is incremented by a squared value.
+    // This will propagate sign information out of such loops.
+    if (P->getNumIncomingValues() != 2)
----------------
kshitijvp wrote:

Done

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


More information about the llvm-commits mailing list