diff options
author | Pedro Artigas <partigas@apple.com> | 2012-12-03 21:56:57 +0000 |
---|---|---|
committer | Pedro Artigas <partigas@apple.com> | 2012-12-03 21:56:57 +0000 |
commit | 49eb628c21b358380b76df82aa3dfe0baab4c6ec (patch) | |
tree | 29d69b3d5f7545a0dc7def41118e59b1dd28036b /include/llvm/CallGraphSCCPass.h | |
parent | f7e78487de159940e00e3fadaf6b2e023e2ad8fe (diff) |
moves doInitialization and doFinalization to the Pass class and removes some unreachable code in MachineModuleInfo
reviewed by Evan Cheng <evan.cheng@apple.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CallGraphSCCPass.h')
-rw-r--r-- | include/llvm/CallGraphSCCPass.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CallGraphSCCPass.h b/include/llvm/CallGraphSCCPass.h index 8958ad2fc1..4446777669 100644 --- a/include/llvm/CallGraphSCCPass.h +++ b/include/llvm/CallGraphSCCPass.h @@ -39,6 +39,9 @@ public: /// corresponding to a CallGraph. Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const; + using llvm::Pass::doInitialization; + using llvm::Pass::doFinalization; + /// doInitialization - This method is called before the SCC's of the program /// has been processed, allowing the pass to do initialization as necessary. virtual bool doInitialization(CallGraph &CG) { |