[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp

Owen Anderson resistor at mac.com
Sun Apr 15 01:48:05 PDT 2007



Changes in directory llvm/lib/Transforms/Scalar:

LoopStrengthReduce.cpp updated: 1.129 -> 1.130
---
Log message:

Remove ImmediateDominator analysis.  The same information can be obtained from DomTree.  A lot of code for 
constructing ImmediateDominator is now folded into DomTree construction.

This is part of the ongoing work for PR217: http://llvm.org/PR217 .


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

 LoopStrengthReduce.cpp |    1 -
 1 files changed, 1 deletion(-)


Index: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
diff -u llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.129 llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.130
--- llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:1.129	Fri Apr 13 15:42:26 2007
+++ llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp	Sun Apr 15 03:47:27 2007
@@ -154,7 +154,6 @@
       AU.addPreservedID(LoopSimplifyID);
       AU.addPreserved<LoopInfo>();
       AU.addPreserved<ETForest>();
-      AU.addPreserved<ImmediateDominators>();
       AU.addPreserved<DominanceFrontier>();
       AU.addPreserved<DominatorTree>();
 






More information about the llvm-commits mailing list