[llvm] [SelectionDAG] Wire up -gen-sdnode-info TableGen backend (PR #125358)
Sergei Barannikov via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 6 18:36:23 PST 2025
================
@@ -1155,11 +1155,11 @@ void SelectionDAG::DeallocateNode(SDNode *N) {
#ifndef NDEBUG
/// VerifySDNode - Check the given SDNode. Aborts if it is invalid.
-static void VerifySDNode(SDNode *N, const TargetLowering *TLI) {
+static void VerifySDNode(const SelectionDAG &DAG, SDNode *N) {
----------------
s-barannikov wrote:
Made it a member function. Not sure if it should be guarded by `LLVM_ENABLE_ABI_BREAKING_CHECKS`. It doesn't add new data members / virtual functions, so this change shouldn't be an ABI breaking, right?
https://github.com/llvm/llvm-project/pull/125358
More information about the llvm-commits
mailing list