[llvm] [ValueTracking] Handle trunc to i1 as condition in dominating condition. (PR #126414)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 9 03:29:54 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;
----------------
nikic wrote:
Not in a br cond will be canonicalized away by swapping successors. Shouldn't need this.
https://github.com/llvm/llvm-project/pull/126414
More information about the llvm-commits
mailing list