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



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to