diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 19:36:42 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 19:36:42 +0000 |
commit | 5957c9b8aa1d0585e55ce485da363031da583966 (patch) | |
tree | e9b25f660e291ba93b7e3167f93388b2d7be2edf /lib/CodeGen/ELFCodeEmitter.cpp | |
parent | 26045e25bf06a5b6476bd6f2d52a5d49da3c40d2 (diff) |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFCodeEmitter.cpp')
-rw-r--r-- | lib/CodeGen/ELFCodeEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/ELFCodeEmitter.cpp b/lib/CodeGen/ELFCodeEmitter.cpp index a6429f7000..11a85a0ba7 100644 --- a/lib/CodeGen/ELFCodeEmitter.cpp +++ b/lib/CodeGen/ELFCodeEmitter.cpp @@ -37,7 +37,7 @@ namespace llvm { /// startFunction - This callback is invoked when a new machine function is /// about to be emitted. void ELFCodeEmitter::startFunction(MachineFunction &MF) { - DEBUG(errs() << "processing function: " + DEBUG(dbgs() << "processing function: " << MF.getFunction()->getName() << "\n"); // Get the ELF Section that this function belongs in. |