[llvm-commits] [llvm] r92518 - /llvm/trunk/lib/CodeGen/GCStrategy.cpp
David Greene
greened at obbligato.org
Mon Jan 4 13:48:34 PST 2010
Author: greened
Date: Mon Jan 4 15:48:34 2010
New Revision: 92518
URL: http://llvm.org/viewvc/llvm-project?rev=92518&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/CodeGen/GCStrategy.cpp
Modified: llvm/trunk/lib/CodeGen/GCStrategy.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/GCStrategy.cpp?rev=92518&r1=92517&r2=92518&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/GCStrategy.cpp (original)
+++ llvm/trunk/lib/CodeGen/GCStrategy.cpp Mon Jan 4 15:48:34 2010
@@ -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 @@
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;
}
More information about the llvm-commits
mailing list