summaryrefslogtreecommitdiffstats
path: root/llvm/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
commitf92e6718bcf966cd459aebe04b38d61309203a5d (patch)
tree03b5014caa781b39baabfc243ce85dc4248548bf /llvm/lib/Support/Twine.cpp
parentcf0addf927d128ba3adf1e53b86dab187561a713 (diff)
downloadbcm5719-llvm-f92e6718bcf966cd459aebe04b38d61309203a5d.tar.gz
bcm5719-llvm-f92e6718bcf966cd459aebe04b38d61309203a5d.zip
Change errs() to dbgs().
llvm-svn: 92640
Diffstat (limited to 'llvm/lib/Support/Twine.cpp')
-rw-r--r--llvm/lib/Support/Twine.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Support/Twine.cpp b/llvm/lib/Support/Twine.cpp
index 292c0c2b9e5..94464ffe4f0 100644
--- a/llvm/lib/Support/Twine.cpp
+++ b/llvm/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());
}
OpenPOWER on IntegriCloud