summaryrefslogtreecommitdiff
path: root/tools/opt/AnalysisWrappers.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2008-09-19 07:57:09 +0000
committerDuncan Sands <baldrick@free.fr>2008-09-19 07:57:09 +0000
commite65d39a42ccb63c8b883db0c466cc43f42d83fff (patch)
tree5ac155673b708efe3891cab768e0e1e6f72b580d /tools/opt/AnalysisWrappers.cpp
parentfa48f941304f29f967e0a7fc6807d7026ba99b7b (diff)
downloadllvm-e65d39a42ccb63c8b883db0c466cc43f42d83fff.tar.gz
llvm-e65d39a42ccb63c8b883db0c466cc43f42d83fff.tar.bz2
llvm-e65d39a42ccb63c8b883db0c466cc43f42d83fff.tar.xz
Teach -callgraph to always print the callgraph (as the
description says it does), not just when -analyze is used as well. This means printing to stderr, so adjust some tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt/AnalysisWrappers.cpp')
-rw-r--r--tools/opt/AnalysisWrappers.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/opt/AnalysisWrappers.cpp b/tools/opt/AnalysisWrappers.cpp
index dcc8dbb49e..454e73872e 100644
--- a/tools/opt/AnalysisWrappers.cpp
+++ b/tools/opt/AnalysisWrappers.cpp
@@ -66,7 +66,7 @@ namespace {
char ExternalFunctionsPassedConstants::ID = 0;
RegisterPass<ExternalFunctionsPassedConstants>
P1("externalfnconstants", "Print external fn callsites passed constants");
-
+
struct CallGraphPrinter : public ModulePass {
static char ID; // Pass ID, replacement for typeid
CallGraphPrinter() : ModulePass((intptr_t)&ID) {}
@@ -75,13 +75,12 @@ namespace {
AU.setPreservesAll();
AU.addRequiredTransitive<CallGraph>();
}
- virtual bool runOnModule(Module &M) { return false; }
-
- virtual void print(std::ostream &OS, const Module *M) const {
- getAnalysis<CallGraph>().print(OS, M);
+ virtual bool runOnModule(Module &M) {
+ getAnalysis<CallGraph>().print(std::cerr, &M);
+ return false;
}
};
-
+
char CallGraphPrinter::ID = 0;
RegisterPass<CallGraphPrinter>
P2("callgraph", "Print a call graph");