summaryrefslogtreecommitdiff
path: root/lib/Support/Debug.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2007-01-03 22:37:27 +0000
committerBill Wendling <isanbard@gmail.com>2007-01-03 22:37:27 +0000
commitfcf17a30961ac3dfee893c323f7b9ae5fe012957 (patch)
treef639b7fb6cb5751b76f837dd45ddca357b6e72e2 /lib/Support/Debug.cpp
parent118dfcd03a92a912e55bb33d14f302175ef6c5ee (diff)
downloadllvm-fcf17a30961ac3dfee893c323f7b9ae5fe012957.tar.gz
llvm-fcf17a30961ac3dfee893c323f7b9ae5fe012957.tar.bz2
llvm-fcf17a30961ac3dfee893c323f7b9ae5fe012957.tar.xz
The previous implementation of LLVM Streams wasn't removing symbols. This
one should. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32845 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Debug.cpp')
-rw-r--r--lib/Support/Debug.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Support/Debug.cpp b/lib/Support/Debug.cpp
index 6e67ed8f67..c5b6fa2bf4 100644
--- a/lib/Support/Debug.cpp
+++ b/lib/Support/Debug.cpp
@@ -69,8 +69,9 @@ bool llvm::isCurrentDebugType(const char *DebugType) {
// program from having to have hundreds of static c'tor/d'tors for them.
//
OStream &llvm::getErrorOutputStream(const char *DebugType) {
+ static OStream cnoout(0);
if (DebugFlag && isCurrentDebugType(DebugType))
return cerr;
else
- return cnull;
+ return cnoout;
}