From 0ff129f061233b724abe22fe048f06bcb06cd308 Mon Sep 17 00:00:00 2001 From: David Greene Date: Wed, 23 Dec 2009 18:25:37 +0000 Subject: [PATCH] Convert debug messages to use dbgs(). Generally this means s/errs/dbgs/g except for certain special cases. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92016 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Casting.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h index 35fb29ec6cb..37a7c3b02d4 100644 --- a/include/llvm/Support/Casting.h +++ b/include/llvm/Support/Casting.h @@ -251,7 +251,7 @@ struct foo { }; template <> inline bool isa_impl(const bar &Val) { - errs() << "Classof: " << &Val << "\n"; + dbgs() << "Classof: " << &Val << "\n"; return true; } -- 2.34.1