[Mlir-commits] [mlir] [MLIR] Remove overly verbose Debug for TypeID checks (NFC) (PR #150751)

Mehdi Amini llvmlistbot at llvm.org
Sat Jul 26 04:07:05 PDT 2025


https://github.com/joker-eph created https://github.com/llvm/llvm-project/pull/150751

These are spammy and mostly uninteresting during debugging.

>From cb89ec2c8aa807803c8f5c23f0b0a2ceca2dae78 Mon Sep 17 00:00:00 2001
From: Mehdi Amini <joker.eph at gmail.com>
Date: Sat, 26 Jul 2025 04:05:53 -0700
Subject: [PATCH] [MLIR] Remove overly verbose Debug for TypeID checks (NFC)

These are spammy and mostly uninteresting during debugging.
---
 mlir/lib/Support/TypeID.cpp | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/mlir/lib/Support/TypeID.cpp b/mlir/lib/Support/TypeID.cpp
index 01ad910113018..304253cc6daa7 100644
--- a/mlir/lib/Support/TypeID.cpp
+++ b/mlir/lib/Support/TypeID.cpp
@@ -27,9 +27,6 @@ namespace {
 struct ImplicitTypeIDRegistry {
   /// Lookup or insert a TypeID for the given type name.
   TypeID lookupOrInsert(StringRef typeName) {
-    LLVM_DEBUG(llvm::dbgs() << "ImplicitTypeIDRegistry::lookupOrInsert("
-                            << typeName << ")\n");
-
     // Perform a heuristic check to see if this type is in an anonymous
     // namespace. String equality is not valid for anonymous types, so we try to
     // abort whenever we see them.



More information about the Mlir-commits mailing list