[llvm] [SDAG] Handle insert_subvector in isKnownNeverNaN (PR #131989)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 02:51:52 PDT 2025
================
@@ -5625,6 +5625,9 @@ bool SelectionDAG::isKnownNeverNaN(SDValue Op, bool SNaN, unsigned Depth) const
(SNaN && !C->getValueAPF().isSignaling());
}
+ if (Op.isUndef())
+ return true;
----------------
arsenm wrote:
This is incorrect. You could do this for poison, but not undef tttt
https://github.com/llvm/llvm-project/pull/131989
More information about the llvm-commits
mailing list