diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:28:32 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:28:32 +0000 |
commit | de7b3536529c87be99ec7ac805d7cb464de71245 (patch) | |
tree | 6aa2352112de708b7a702099baf5bcd1f81d97a8 /llvm/lib/Support | |
parent | 80604d5f09ca0a826eae84aae71352185f6655e5 (diff) | |
download | bcm5719-llvm-de7b3536529c87be99ec7ac805d7cb464de71245.tar.gz bcm5719-llvm-de7b3536529c87be99ec7ac805d7cb464de71245.zip |
Change errs() to dbgs().
llvm-svn: 92638
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/ConstantRange.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Support/ConstantRange.cpp b/llvm/lib/Support/ConstantRange.cpp index e427f820c44..ddf14e33eed 100644 --- a/llvm/lib/Support/ConstantRange.cpp +++ b/llvm/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(errs()); + print(dbgs()); } |