[llvm] Introducing a new ISD::POISON SDNode to represent the poison value in the IR. (PR #125883)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 13:25:13 PST 2025
================
@@ -9244,6 +9248,11 @@ SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
SDVTList VTs = Indexed ?
getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
+
+ // Lower poison to undef.
+ if (Ptr.getNode()->isPoison())
+ Ptr = getUNDEF(Ptr.getValueType());
----------------
nikic wrote:
Why does this bit require special handling?
https://github.com/llvm/llvm-project/pull/125883
More information about the llvm-commits
mailing list