1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Change errs() to dbgs().

llvm-svn: 92626
This commit is contained in:
David Greene 2010-01-05 01:27:53 +00:00
parent 0d082a1e9d
commit 771bfcd4c5

View File

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