[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
Mon Mar 31 07:14:24 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:
This comment is kind of wrong. Undef and poison should get separate handling, but best leave for a future patch. Add a todo?
https://github.com/llvm/llvm-project/pull/125883
More information about the llvm-commits
mailing list