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:
af6c8cc
)
Change errs() to dbgs().
author
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:28:32 +0000
(
01:28
+0000)
committer
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:28:32 +0000
(
01:28
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92638
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/ConstantRange.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/ConstantRange.cpp
b/lib/Support/ConstantRange.cpp
index e427f820c44632988ae06fdca171018223f5d726..ddf14e33eed8b3ac76db05a4c8fb0183c5ed1cf2 100644
(file)
--- a/
lib/Support/ConstantRange.cpp
+++ b/
lib/Support/ConstantRange.cpp
@@
-22,6
+22,7
@@
//===----------------------------------------------------------------------===//
#include "llvm/Support/ConstantRange.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Instructions.h"
using namespace llvm;
@@
-655,7
+656,7
@@
void ConstantRange::print(raw_ostream &OS) const {
/// dump - Allow printing from a debugger easily...
///
void ConstantRange::dump() const {
- print(
err
s());
+ print(
dbg
s());
}