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

Change errs() to dbgs().

llvm-svn: 92645
This commit is contained in:
David Greene 2010-01-05 01:28:58 +00:00
parent 13baf4f08a
commit 748f4ea3c4

View File

@ -11,6 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/Debug.h"
#include "llvm/Support/Timer.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ManagedStatic.h"
@ -373,7 +374,7 @@ void TimerGroup::removeTimer() {
TimersToPrint.clear();
if (OutStream != &errs() && OutStream != &outs())
if (OutStream != &errs() && OutStream != &outs() && OutStream != &dbgs())
delete OutStream; // Close the file...
}
}