[Mlir-commits] [mlir] 865dd27 - [MLIR] Remove overly verbose Debug for TypeID checks (NFC) (#150751)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Jul 27 11:21:06 PDT 2025
Author: Mehdi Amini
Date: 2025-07-27T20:21:03+02:00
New Revision: 865dd278a9957f68ea7517427e5b73c81ea22db5
URL: https://github.com/llvm/llvm-project/commit/865dd278a9957f68ea7517427e5b73c81ea22db5
DIFF: https://github.com/llvm/llvm-project/commit/865dd278a9957f68ea7517427e5b73c81ea22db5.diff
LOG: [MLIR] Remove overly verbose Debug for TypeID checks (NFC) (#150751)
These are spammy and mostly uninteresting during debugging.
Added:
Modified:
mlir/lib/Support/TypeID.cpp
Removed:
################################################################################
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