summaryrefslogtreecommitdiff
path: root/include/llvm/PassManager.h
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2006-12-13 00:09:23 +0000
committerDevang Patel <dpatel@apple.com>2006-12-13 00:09:23 +0000
commit37a6f7966c39f69a92419d37949a94a758c29e90 (patch)
tree6a996e4961ca5d3e2d4b1ecedaabadec24728ab9 /include/llvm/PassManager.h
parentd4ea4ef541354f9b27b3526399dd3970a2a5064e (diff)
downloadllvm-37a6f7966c39f69a92419d37949a94a758c29e90.tar.gz
llvm-37a6f7966c39f69a92419d37949a94a758c29e90.tar.bz2
llvm-37a6f7966c39f69a92419d37949a94a758c29e90.tar.xz
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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h
index cd8e70b1b3..81c7fd6222 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