diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:25:45 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:25:45 +0000 |
commit | 0080b1accc8de37247835476dba40b72dcb69229 (patch) | |
tree | 0864a5b6a811bd55add364f0ba1edb9151880d9b /lib/CodeGen/VirtRegMap.cpp | |
parent | 309315420669ff5bde9b0ae1213171a88216fad7 (diff) |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/VirtRegMap.cpp')
-rw-r--r-- | lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index c8c5d86157..d4fb2e4d88 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -278,5 +278,5 @@ void VirtRegMap::print(raw_ostream &OS, const Module* M) const { } void VirtRegMap::dump() const { - print(errs()); + print(dbgs()); } |