diff options
author | Devang Patel <dpatel@apple.com> | 2006-12-13 00:09:23 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2006-12-13 00:09:23 +0000 |
commit | 37a6f7966c39f69a92419d37949a94a758c29e90 (patch) | |
tree | 6a996e4961ca5d3e2d4b1ecedaabadec24728ab9 /include/llvm/PassManager.h | |
parent | d4ea4ef541354f9b27b3526399dd3970a2a5064e (diff) | |
download | external_llvm-37a6f7966c39f69a92419d37949a94a758c29e90.zip external_llvm-37a6f7966c39f69a92419d37949a94a758c29e90.tar.gz external_llvm-37a6f7966c39f69a92419d37949a94a758c29e90.tar.bz2 |
Implement PassManager_New destructors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassManager.h')
-rw-r--r-- | include/llvm/PassManager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h index cd8e70b..81c7fd6 100644 --- a/include/llvm/PassManager.h +++ b/include/llvm/PassManager.h @@ -97,6 +97,7 @@ class PassManager_New { public: PassManager_New(); + ~PassManager_New(); /// add - Add a pass to the queue of passes to run. This passes ownership of /// the Pass to the PassManager. When the PassManager is destroyed, the pass @@ -121,7 +122,7 @@ class FunctionPassManager_New { public: FunctionPassManager_New(ModuleProvider *P); FunctionPassManager_New(); - ~FunctionPassManager_New() { /* TODO */ }; + ~FunctionPassManager_New(); /// add - Add a pass to the queue of passes to run. This passes /// ownership of the Pass to the PassManager. When the |