From 865dd278a9957f68ea7517427e5b73c81ea22db5 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Sun, 27 Jul 2025 20:21:03 +0200 Subject: [PATCH] [MLIR] Remove overly verbose Debug for TypeID checks (NFC) (#150751) 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 01ad91011301..304253cc6daa 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.