From b576931ca23ccd71bc702f3cdee1b365314bbf4f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 12 Mar 2008 20:52:10 +0000 Subject: [PATCH] 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 --- lib/CodeGen/VirtRegMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index 9e46c001bfa..8c6934aea88 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); } -- 2.34.1