diff options
author | Dan Gohman <gohman@apple.com> | 2008-03-12 20:52:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-03-12 20:52:10 +0000 |
commit | ecb9ad5742b5dba1c834e0c79eff2214454e3193 (patch) | |
tree | 4bbf689db9a3b57d93c8c2734426114d7f7cf76e /lib | |
parent | 7d45f4d34423fed46e8e846bee602a3d8735d3a6 (diff) | |
download | external_llvm-ecb9ad5742b5dba1c834e0c79eff2214454e3193.zip external_llvm-ecb9ad5742b5dba1c834e0c79eff2214454e3193.tar.gz external_llvm-ecb9ad5742b5dba1c834e0c79eff2214454e3193.tar.bz2 |
Change VirtRegMap's dump to dump to cerr, not DOUT, so that it
can be called from within a debuger without having -debug specified
on the command-line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48298 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-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 9e46c00..8c6934a 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -202,7 +202,7 @@ void VirtRegMap::print(std::ostream &OS) const { } void VirtRegMap::dump() const { - print(DOUT); + print(cerr); } |