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 | aba28d1273f7332a6a8c335e99dd5a68af748d4f (patch) | |
tree | 21ba9d6808f968cbdaf934850a0d0b5e1eef8e6a /lib/CodeGen/GCMetadata.cpp | |
parent | 73242dd692c0226073c367c2fe573287a3d63fc1 (diff) |
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/CodeGen/GCMetadata.cpp')
-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 4d25dccff5..055172b4e0 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); } |