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 | 7fd5fb4b4755c3df86da5a0ebedf0d328fafbc81 (patch) | |
tree | a98abe361eb8f6aeb6ec0bd1539ca85a06a54eae | |
parent | af6c8cc27297cfba8bfed7a0bf4298f4ccfe7268 (diff) | |
download | external_llvm-7fd5fb4b4755c3df86da5a0ebedf0d328fafbc81.zip external_llvm-7fd5fb4b4755c3df86da5a0ebedf0d328fafbc81.tar.gz external_llvm-7fd5fb4b4755c3df86da5a0ebedf0d328fafbc81.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92638 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Support/ConstantRange.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Support/ConstantRange.cpp b/lib/Support/ConstantRange.cpp index e427f82..ddf14e3 100644 --- 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(errs()); + print(dbgs()); } |