[Mlir-commits] [mlir] [mlir] Use LDBG to replace LLVM_DEBUG (NFC) (PR #166733)

Mehdi Amini llvmlistbot at llvm.org
Thu Nov 6 01:19:47 PST 2025


================
@@ -294,8 +293,7 @@ int64_t ValueBoundsConstraintSet::insert(Value value,
 int64_t ValueBoundsConstraintSet::insert(bool isSymbol) {
   int64_t pos = isSymbol ? cstr.appendVar(VarKind::Symbol)
                          : cstr.appendVar(VarKind::SetDim);
-  LLVM_DEBUG(llvm::dbgs() << "Inserting anonymous constraint set column " << pos
-                          << "\n");
+  LDBG() << "Inserting anonymous constraint set column " << pos << "\n";
----------------
joker-eph wrote:

```suggestion
  LDBG() << "Inserting anonymous constraint set column " << pos;
```

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


More information about the Mlir-commits mailing list