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:
Dan Gohman 2008-03-12 20:52:10 +00:00
parent bf68f9fd8d
commit 34ae72c435
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ void VirtRegMap::print(std::ostream &OS) const {
}
void VirtRegMap::dump() const {
print(DOUT);
print(cerr);
}