Change errs() to dbgs().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92498 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2010-01-04 19:36:42 +00:00
parent 26045e25bf
commit 5957c9b8aa

View File

@ -37,7 +37,7 @@ namespace llvm {
/// startFunction - This callback is invoked when a new machine function is /// startFunction - This callback is invoked when a new machine function is
/// about to be emitted. /// about to be emitted.
void ELFCodeEmitter::startFunction(MachineFunction &MF) { void ELFCodeEmitter::startFunction(MachineFunction &MF) {
DEBUG(errs() << "processing function: " DEBUG(dbgs() << "processing function: "
<< MF.getFunction()->getName() << "\n"); << MF.getFunction()->getName() << "\n");
// Get the ELF Section that this function belongs in. // Get the ELF Section that this function belongs in.