projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ededf7
)
Change errs() to dbgs().
author
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:28:40 +0000
(
01:28
+0000)
committer
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:28:40 +0000
(
01:28
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92640
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/Twine.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/Twine.cpp
b/lib/Support/Twine.cpp
index 292c0c2b9e5e53772ab3a38240a311f2908aa898..94464ffe4f0e96d93303d4d010f4e5afe6f4ac61 100644
(file)
--- 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::
err
s());
+ print(llvm::
dbg
s());
}
void Twine::dumpRepr() const {
- printRepr(llvm::
err
s());
+ printRepr(llvm::
dbg
s());
}