[llvm] Introducing a new ISD::POISON SDNode to represent the poison value in the IR. (PR #125883)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 22:40:16 PST 2025
================
@@ -977,6 +977,11 @@ void SelectionDAGLegalize::LegalizeOp(SDNode *Node) {
TargetLowering::LegalizeAction Action = TargetLowering::Legal;
bool SimpleFinishLegalizing = true;
switch (Node->getOpcode()) {
+ case ISD::POISON: {
+ SDValue UndefNode = DAG.getUNDEF(Node->getValueType(0));
+ ReplaceNode(Node, UndefNode.getNode());
+ break;
+ }
----------------
arsenm wrote:
Yes, it's fine to leave it as it's copying what undef is already doing. But really this should have mandatory legality for legal types
https://github.com/llvm/llvm-project/pull/125883
More information about the llvm-commits
mailing list