diff options
| author | Yaron Keren <yaron.keren@gmail.com> | 2016-04-28 19:21:30 +0000 |
|---|---|---|
| committer | Yaron Keren <yaron.keren@gmail.com> | 2016-04-28 19:21:30 +0000 |
| commit | 3189622ae55f66e57a7288b7523abce2e3ef39b3 (patch) | |
| tree | 9af5e852edb11a6bcea68888a7da46dc37a82bd1 | |
| parent | 7ea9a529aa1d5925eda9813a92800258f80848b7 (diff) | |
| download | bcm5719-llvm-3189622ae55f66e57a7288b7523abce2e3ef39b3.tar.gz bcm5719-llvm-3189622ae55f66e57a7288b7523abce2e3ef39b3.zip | |
Remove doInitialization() and doFinalization() member declarations without definitions.
Visual C++ 2015 flags this in the IDE.
llvm-svn: 267919
| -rw-r--r-- | llvm/lib/IR/LegacyPassManager.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/lib/IR/LegacyPassManager.cpp b/llvm/lib/IR/LegacyPassManager.cpp index 03391ce1749..8f71d822d27 100644 --- a/llvm/lib/IR/LegacyPassManager.cpp +++ b/llvm/lib/IR/LegacyPassManager.cpp @@ -325,14 +325,6 @@ public: using llvm::Pass::doInitialization; using llvm::Pass::doFinalization; - /// doInitialization - Run all of the initializers for the module passes. - /// - bool doInitialization(); - - /// doFinalization - Run all of the finalizers for the module passes. - /// - bool doFinalization(); - /// Pass Manager itself does not invalidate any analysis info. void getAnalysisUsage(AnalysisUsage &Info) const override { Info.setPreservesAll(); @@ -423,14 +415,6 @@ public: using llvm::Pass::doInitialization; using llvm::Pass::doFinalization; - /// doInitialization - Run all of the initializers for the module passes. - /// - bool doInitialization(); - - /// doFinalization - Run all of the finalizers for the module passes. - /// - bool doFinalization(); - /// Pass Manager itself does not invalidate any analysis info. void getAnalysisUsage(AnalysisUsage &Info) const override { Info.setPreservesAll(); |

