forked from OSchip/llvm-project
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
This commit is contained in:
parent
bf68f9fd8d
commit
34ae72c435
|
@ -202,7 +202,7 @@ void VirtRegMap::print(std::ostream &OS) const {
|
|||
}
|
||||
|
||||
void VirtRegMap::dump() const {
|
||||
print(DOUT);
|
||||
print(cerr);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue