[llvm-commits] CVS: llvm/lib/VMCore/PassManager.cpp

Devang Patel dpatel at apple.com
Tue May 22 22:09:11 PDT 2007



Changes in directory llvm/lib/VMCore:

PassManager.cpp updated: 1.156 -> 1.157
---
Log message:

If user wants to run instcombine twice, do not block it.


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

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


Index: llvm/lib/VMCore/PassManager.cpp
diff -u llvm/lib/VMCore/PassManager.cpp:1.156 llvm/lib/VMCore/PassManager.cpp:1.157
--- llvm/lib/VMCore/PassManager.cpp:1.156	Wed May  2 20:11:54 2007
+++ llvm/lib/VMCore/PassManager.cpp	Wed May 23 00:08:52 2007
@@ -419,11 +419,6 @@
   // TODO : Allocate function manager for this pass, other wise required set
   // may be inserted into previous function manager
 
-  // If this Analysis is already requested by one of the previous pass
-  // and it is still available then do not insert new pass in the queue again.
-  if (findAnalysisPass(P->getPassInfo()))
-      return;
-
   // Give pass a chance to prepare the stage.
   P->preparePassManager(activeStack);
 






More information about the llvm-commits mailing list