[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
Tue Apr 1 22:21:34 PDT 2025


================
@@ -16266,7 +16266,8 @@ SDValue DAGCombiner::visitFREEZE(SDNode *N) {
   // Finally, recreate the node, it's operands were updated to use
   // frozen operands, so we just need to use it's "original" operands.
   SmallVector<SDValue> Ops(N0->ops());
-  // Special-handle ISD::UNDEF, each single one of them can be it's own thing.
+  // Special-handle ISD::UNDEF, ISD::POISON, each single one of them can be it's
----------------
arsenm wrote:

I missed that this is in the context of the freeze combine, so the comment doesn't really apply.

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


More information about the llvm-commits mailing list