[llvm] Introducing a new ISD::POISON SDNode to represent the poison value in the IR. (PR #125883)

zhijian lin via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 4 12:21:06 PDT 2025


================
@@ -7601,6 +7604,20 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
     }
   }
 
+  // TODO: According to https://llvm.org/docs/UndefinedBehavior.html#poison-values,
+  // most instructions return poison if any of their inputs are poison.
+  // A notable exception is the select instruction, which is poison if and only if
+  // the condition is poison or the selected value is poison.
+
+  // Currently, we only handle the case where the opcode is ISD::ADD and the second input is poison.
----------------
diggerlin wrote:

OK, I got it,  I revert this change. thanks

https://github.com/llvm/llvm-project/pull/125883


More information about the llvm-commits mailing list