From: David Greene Date: Tue, 5 Jan 2010 01:25:45 +0000 (+0000) Subject: Change errs() to dbgs(). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0080b1accc8de37247835476dba40b72dcb69229;p=oota-llvm.git Change errs() to dbgs(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92587 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp index c8c5d861578..d4fb2e4d884 100644 --- a/lib/CodeGen/VirtRegMap.cpp +++ b/lib/CodeGen/VirtRegMap.cpp @@ -278,5 +278,5 @@ void VirtRegMap::print(raw_ostream &OS, const Module* M) const { } void VirtRegMap::dump() const { - print(errs()); + print(dbgs()); }