summaryrefslogtreecommitdiff
path: root/lib/Support/Twine.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 01:28:40 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 01:28:40 +0000
commit2b965b05fcbce4a6c8bcc5570bb5a1deff2b0988 (patch)
treec09e344fbcaccdd3c9229fe951046ecdae99fc11 /lib/Support/Twine.cpp
parent5ededf7d42417379d230c92fc73912ebb650ede9 (diff)
downloadllvm-2b965b05fcbce4a6c8bcc5570bb5a1deff2b0988.tar.gz
llvm-2b965b05fcbce4a6c8bcc5570bb5a1deff2b0988.tar.bz2
llvm-2b965b05fcbce4a6c8bcc5570bb5a1deff2b0988.tar.xz
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Twine.cpp')
-rw-r--r--lib/Support/Twine.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Support/Twine.cpp b/lib/Support/Twine.cpp
index 292c0c2b9e..94464ffe4f 100644
--- a/lib/Support/Twine.cpp
+++ b/lib/Support/Twine.cpp
@@ -9,6 +9,7 @@
#include "llvm/ADT/Twine.h"
#include "llvm/ADT/SmallString.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
@@ -125,9 +126,9 @@ void Twine::printRepr(raw_ostream &OS) const {
}
void Twine::dump() const {
- print(llvm::errs());
+ print(llvm::dbgs());
}
void Twine::dumpRepr() const {
- printRepr(llvm::errs());
+ printRepr(llvm::dbgs());
}