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

Mehdi Amini llvmlistbot at llvm.org
Thu Nov 6 01:20:35 PST 2025


================
@@ -386,18 +383,17 @@ void ValueBoundsConstraintSet::processWorklist() {
     // Do not process any further if the stop condition is met.
     auto maybeDim = dim == kIndexValue ? std::nullopt : std::make_optional(dim);
     if (stopCondition(value, maybeDim, *this)) {
-      LLVM_DEBUG(llvm::dbgs() << "Stop condition met for: " << value
-                              << " (dim: " << maybeDim << ")\n");
+      LDBG() << "Stop condition met for: " << value << " (dim: " << maybeDim
+             << ")\n";
----------------
joker-eph wrote:

```suggestion
             << ")";
```

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


More information about the Mlir-commits mailing list