[Mlir-commits] [mlir] [mlir][dataflow ] Drop LLVM_DEBUG of DATAFLOW_DEBUG (PR #177398)
lonely eagle
llvmlistbot at llvm.org
Thu Jan 22 08:37:32 PST 2026
https://github.com/linuxlonelyeagle created https://github.com/llvm/llvm-project/pull/177398
None
>From 038770c0953d3491a3524ba75a75bf5686414102 Mon Sep 17 00:00:00 2001
From: linuxlonelyeagle <2020382038 at qq.com>
Date: Thu, 22 Jan 2026 16:35:52 +0000
Subject: [PATCH] drop LLVM_DEBUG of DATAFLOW_DEBUG.
---
mlir/lib/Analysis/DataFlowFramework.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/lib/Analysis/DataFlowFramework.cpp b/mlir/lib/Analysis/DataFlowFramework.cpp
index 56780e8b7b127..258bcf312afc5 100644
--- a/mlir/lib/Analysis/DataFlowFramework.cpp
+++ b/mlir/lib/Analysis/DataFlowFramework.cpp
@@ -20,7 +20,7 @@
#define DEBUG_TYPE "dataflow"
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
-#define DATAFLOW_DEBUG(X) LLVM_DEBUG(X)
+#define DATAFLOW_DEBUG(X) X
#else
#define DATAFLOW_DEBUG(X)
#endif // LLVM_ENABLE_ABI_BREAKING_CHECKS
More information about the Mlir-commits
mailing list