[llvm-commits] CVS: llvm/include/llvm/PassManager.h
Devang Patel
dpatel at apple.com
Tue Dec 12 16:09:43 PST 2006
Changes in directory llvm/include/llvm:
PassManager.h updated: 1.33 -> 1.34
---
Log message:
Implement PassManager_New destructors.
---
Diffs of the changes: (+2 -1)
PassManager.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/PassManager.h
diff -u llvm/include/llvm/PassManager.h:1.33 llvm/include/llvm/PassManager.h:1.34
--- llvm/include/llvm/PassManager.h:1.33 Fri Dec 8 12:57:16 2006
+++ llvm/include/llvm/PassManager.h Tue Dec 12 18:09:23 2006
@@ -97,6 +97,7 @@
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 @@
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
More information about the llvm-commits
mailing list