projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39e33ac
)
Change VirtRegMap's dump to dump to cerr, not DOUT, so that it
author
Dan Gohman
<gohman@apple.com>
Wed, 12 Mar 2008 20:52:10 +0000
(20:52 +0000)
committer
Dan Gohman
<gohman@apple.com>
Wed, 12 Mar 2008 20:52:10 +0000
(20:52 +0000)
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
lib/CodeGen/VirtRegMap.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/VirtRegMap.cpp
b/lib/CodeGen/VirtRegMap.cpp
index 9e46c001bfa73e027fd0c7fd25b8627ab28f2ec7..8c6934aea8853b865a105e0ac77eb4e537c6e95b 100644
(file)
--- 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
);
}