Change errs() to dbgs().

llvm-svn: 92498
This commit is contained in:
David Greene 2010-01-04 19:36:42 +00:00
parent 9882a5aac6
commit 94cfbe1ddd
1 changed files with 1 additions and 1 deletions

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.