Change errs() to dbgs().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92626 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2010-01-05 01:27:53 +00:00
parent c0aa67950a
commit c2e0974afb

View File

@ -15,6 +15,7 @@
#include "llvm/Module.h"
#include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/System/Path.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Config/config.h"
@ -60,7 +61,7 @@ Linker::warning(StringRef message) {
void
Linker::verbose(StringRef message) {
if (Flags&Verbose)
errs() << " " << message << "\n";
dbgs() << " " << message << "\n";
}
void