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

Yingwei Zheng via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 9 22:23:45 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)),
----------------
dtcxzyw wrote:

Is `!IsAssume` used to avoid issues with ephemeral values? If so, please add some comments here.


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


More information about the llvm-commits mailing list