[llvm] [ValueTracking] Handle trunc to i1 as condition in dominating condition. (PR #126414)

Andreas Jonson via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 9 05:00:36 PST 2025


================
@@ -801,6 +801,22 @@ static void computeKnownBitsFromCond(const Value *V, Value *Cond,
 
   if (auto *Cmp = dyn_cast<ICmpInst>(Cond))
     computeKnownBitsFromICmpCond(V, Cmp, Known, SQ, Invert);
+
+  if (match(Cond, m_Not(m_Value(Cond))))
+    Invert = !Invert;
----------------
andjo403 wrote:

added the @test_not_trunc_cond_and that do not pass without this.

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


More information about the llvm-commits mailing list