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 | 34ae72c43571a2f80343204c4dff926eb6d384fb (patch) | |
| tree | 072f602234813a282f30ed415e68cb2be3eb8906 /llvm/lib | |
| parent | bf68f9fd8d282a9f9c0d148279485b9ab9fb668c (diff) | |
| download | bcm5719-llvm-34ae72c43571a2f80343204c4dff926eb6d384fb.tar.gz bcm5719-llvm-34ae72c43571a2f80343204c4dff926eb6d384fb.zip | |
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.
llvm-svn: 48298
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index 9e46c001bfa..8c6934aea88 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/lib/CodeGen/VirtRegMap.cpp @@ -202,7 +202,7 @@ void VirtRegMap::print(std::ostream &OS) const { } void VirtRegMap::dump() const { - print(DOUT); + print(cerr); } |

