diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 21:35:15 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 21:35:15 +0000 |
commit | dfa2866fc88756178b5c2144c9e9890761b48c51 (patch) | |
tree | 21ba9d6808f968cbdaf934850a0d0b5e1eef8e6a /lib | |
parent | 5fb66146d72f02c4dc2b597824d92846127740a6 (diff) | |
download | external_llvm-dfa2866fc88756178b5c2144c9e9890761b48c51.zip external_llvm-dfa2866fc88756178b5c2144c9e9890761b48c51.tar.gz external_llvm-dfa2866fc88756178b5c2144c9e9890761b48c51.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/GCMetadata.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/GCMetadata.cpp b/lib/CodeGen/GCMetadata.cpp index 4d25dcc..055172b 100644 --- a/lib/CodeGen/GCMetadata.cpp +++ b/lib/CodeGen/GCMetadata.cpp @@ -17,6 +17,7 @@ #include "llvm/Pass.h" #include "llvm/CodeGen/Passes.h" #include "llvm/Function.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -92,7 +93,7 @@ GCStrategy *GCModuleInfo::getOrCreateStrategy(const Module *M, } } - errs() << "unsupported GC: " << Name << "\n"; + dbgs() << "unsupported GC: " << Name << "\n"; llvm_unreachable(0); } |