summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Casting.h
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-12-23 18:25:37 +0000
committerDavid Greene <greened@obbligato.org>2009-12-23 18:25:37 +0000
commit0ff129f061233b724abe22fe048f06bcb06cd308 (patch)
treeef693a38744a0b1ac3459eb59b99b019a90757d7 /include/llvm/Support/Casting.h
parent49f253315dbe1f3c14c0ce6d5236089acb92f80f (diff)
downloadllvm-0ff129f061233b724abe22fe048f06bcb06cd308.tar.gz
llvm-0ff129f061233b724abe22fe048f06bcb06cd308.tar.bz2
llvm-0ff129f061233b724abe22fe048f06bcb06cd308.tar.xz
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
Diffstat (limited to 'include/llvm/Support/Casting.h')
-rw-r--r--include/llvm/Support/Casting.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h
index 35fb29ec6c..37a7c3b02d 100644
--- a/include/llvm/Support/Casting.h
+++ b/include/llvm/Support/Casting.h
@@ -251,7 +251,7 @@ struct foo {
};
template <> inline bool isa_impl<foo,bar>(const bar &Val) {
- errs() << "Classof: " << &Val << "\n";
+ dbgs() << "Classof: " << &Val << "\n";
return true;
}