[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 22:45:35 PST 2025


================
@@ -10272,6 +10288,9 @@ void llvm::findValuesAffectedByCondition(
                                                            m_Value()))) {
       // Handle patterns that computeKnownFPClass() support.
       AddAffected(A);
+    } else if (!IsAssume && match(V, m_CombineOr(m_Trunc(m_Value(X)),
----------------
andjo403 wrote:

partly, for the not https://github.com/llvm/llvm-project/pull/126423#discussion_r1948229739 it is the avoid issues with ephemeral values. 
but also to avoid to add the same value again as truncated value of V is already added for assume above as the AddAffected Looks through trunc.
will add comment

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


More information about the llvm-commits mailing list