[llvm] [InstCombine] Enable select freeze poison folding when storing value (PR #129776)
John McIver via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 21:18:08 PST 2025
================
@@ -4842,8 +4847,11 @@ Instruction *InstCombinerImpl::visitFreeze(FreezeInst &I) {
Constant *C;
if (match(Op0, m_Constant(C)) && C->containsUndefOrPoisonElement()) {
----------------
jmciver wrote:
Thanks for pointing out the miscompilation!
The reason I did not place this logic into `InstCombinerImpl::visitSelect` was the canonical form produced by `InstCombinerImpl::visitFreeze` occurs first and thus ruins the match on freeze poison when visitation is performed on the select instruction.
I experimented a bit and derived a two match expression in the lambda function.
Added basic vector tests.
https://github.com/llvm/llvm-project/pull/129776
More information about the llvm-commits
mailing list