[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:14 PST 2025


================
@@ -690,8 +690,20 @@ END_TWO_BYTE_PACK()
   /// \<target\>ISD namespace).
   bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
 
-  /// Return true if the type of the node type undefined.
-  bool isUndef() const { return NodeType == ISD::UNDEF; }
+  /// Returns true if the node type is UNDEF or, when DoNotIncludeExplicitPoison
+  /// is false, POISON.
+  /// - When DoNotIncludeExplicitPoison is true, returns true only for UNDEF.
+  /// - When DoNotIncludeExplicitPoison is false, returns true for both UNDEF
+  /// and POISON.
+  /// @param DoNotIncludeExplicitPoison Determines whether to check only for
+  /// UNDEF.
----------------
nikic wrote:

```suggestion
```
This comment explains the meaning of the parameter three times...

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


More information about the llvm-commits mailing list