[llvm] [InstCombine] Enable select freeze poison folding when storing value (PR #129776)
John McIver via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 20:00:50 PST 2025
================
@@ -3124,6 +3124,19 @@ inline auto m_c_LogicalOp(const LHS &L, const RHS &R) {
return m_LogicalOp<LHS, RHS, /*Commutable=*/true>(L, R);
}
+struct GuaranteedNotToBeUndefOrPoison_match {
+ template <typename ITy> bool match(ITy *V) {
+ if (auto *AsValue = dyn_cast<Value>(V))
+ return isGuaranteedNotToBeUndefOrPoison(AsValue);
----------------
jmciver wrote:
I ended up removing the helper.
https://github.com/llvm/llvm-project/pull/129776
More information about the llvm-commits
mailing list