diff options
author | David Greene <greened@obbligato.org> | 2009-12-23 20:03:58 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-12-23 20:03:58 +0000 |
commit | 265c026fee512f8206050c0b3f956fe072b05b34 (patch) | |
tree | 435a0f09bae36ab32138d2b2f9a7b77096278c31 /lib/Analysis | |
parent | e13ed1533bb91fcca163f6afb3914b740c55e71c (diff) | |
download | external_llvm-265c026fee512f8206050c0b3f956fe072b05b34.zip external_llvm-265c026fee512f8206050c0b3f956fe072b05b34.tar.gz external_llvm-265c026fee512f8206050c0b3f956fe072b05b34.tar.bz2 |
Convert debug messages to use dbgs(). Generally this means
s/errs/dbgs/g except for certain special cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/IPA/CallGraph.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Analysis/IPA/CallGraph.cpp b/lib/Analysis/IPA/CallGraph.cpp index 9cd8bb8..a826177 100644 --- a/lib/Analysis/IPA/CallGraph.cpp +++ b/lib/Analysis/IPA/CallGraph.cpp @@ -17,6 +17,7 @@ #include "llvm/Instructions.h" #include "llvm/IntrinsicInst.h" #include "llvm/Support/CallSite.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -181,7 +182,7 @@ void CallGraph::print(raw_ostream &OS, Module*) const { I->second->print(OS); } void CallGraph::dump() const { - print(errs(), 0); + print(dbgs(), 0); } //===----------------------------------------------------------------------===// @@ -232,7 +233,7 @@ void CallGraphNode::print(raw_ostream &OS) const { OS << "\n"; } -void CallGraphNode::dump() const { print(errs()); } +void CallGraphNode::dump() const { print(dbgs()); } /// removeCallEdgeFor - This method removes the edge in the node for the /// specified call site. Note that this method takes linear time, so it |