Changes in directory llvm/lib/VMCore:

PassManager.cpp updated: 1.91 -> 1.92
---
Log message:

FunctionPassManager does not support runOnModule(). 


---
Diffs of the changes:  (+0 -7)

 PassManager.cpp |    7 -------
 1 files changed, 7 deletions(-)


Index: llvm/lib/VMCore/PassManager.cpp
diff -u llvm/lib/VMCore/PassManager.cpp:1.91 
llvm/lib/VMCore/PassManager.cpp:1.92
--- llvm/lib/VMCore/PassManager.cpp:1.91        Tue Dec 12 18:09:23 2006
+++ llvm/lib/VMCore/PassManager.cpp     Tue Dec 12 18:34:32 2006
@@ -945,13 +945,6 @@
   FPM->add(P);
 }
 
-/// Execute all of the passes scheduled for execution.  Keep
-/// track of whether any of the passes modifies the function, and if
-/// so, return true.
-bool FunctionPassManager_New::runOnModule(Module &M) {
-  return FPM->runOnModule(M);
-}
-
 /// run - Execute all of the passes scheduled for execution.  Keep
 /// track of whether any of the passes modifies the function, and if
 /// so, return true.



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

Reply via email to