aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/GCStrategy.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-04 21:48:34 +0000
committerDavid Greene <greened@obbligato.org>2010-01-04 21:48:34 +0000
commitca553bd73fc457c86f982434b4a769d0ebfd5745 (patch)
tree447f219d593996ce8cc99f3542cd2d090f9e5962 /llvm/lib/CodeGen/GCStrategy.cpp
parent821e67e25b180cbc8b861cf162a185127e3f79ee (diff)
downloadllvm-ca553bd73fc457c86f982434b4a769d0ebfd5745.zip
llvm-ca553bd73fc457c86f982434b4a769d0ebfd5745.tar.gz
llvm-ca553bd73fc457c86f982434b4a769d0ebfd5745.tar.bz2
Change errs() to dbgs().
llvm-svn: 92518
Diffstat (limited to 'llvm/lib/CodeGen/GCStrategy.cpp')
-rw-r--r--llvm/lib/CodeGen/GCStrategy.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/GCStrategy.cpp b/llvm/lib/CodeGen/GCStrategy.cpp
index 6e0bde6..79b2986 100644
--- a/llvm/lib/CodeGen/GCStrategy.cpp
+++ b/llvm/lib/CodeGen/GCStrategy.cpp
@@ -27,6 +27,7 @@
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetRegisterInfo.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
@@ -109,7 +110,7 @@ GCStrategy::~GCStrategy() {
bool GCStrategy::initializeCustomLowering(Module &M) { return false; }
bool GCStrategy::performCustomLowering(Function &F) {
- errs() << "gc " << getName() << " must override performCustomLowering.\n";
+ dbgs() << "gc " << getName() << " must override performCustomLowering.\n";
llvm_unreachable(0);
return 0;
}