diff options
Diffstat (limited to 'lib/VMCore/PassManager.cpp')
-rw-r--r-- | lib/VMCore/PassManager.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 069bd356ad..875ab5cad7 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -309,6 +309,9 @@ public: /// whether any of the passes modifies the module, and if so, return true. bool runOnModule(Module &M); + using llvm::Pass::doInitialization; + using llvm::Pass::doFinalization; + /// doInitialization - Run all of the initializers for the module passes. /// bool doInitialization(); @@ -402,6 +405,9 @@ public: /// whether any of the passes modifies the module, and if so, return true. bool run(Module &M); + using llvm::Pass::doInitialization; + using llvm::Pass::doFinalization; + /// doInitialization - Run all of the initializers for the module passes. /// bool doInitialization(); |