[llvm-commits] CVS: llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Feb 3 21:49:14 PST 2006
Changes in directory llvm/include/llvm/Analysis:
ScalarEvolutionExpander.h updated: 1.2 -> 1.3
---
Log message:
add a method
---
Diffs of the changes: (+2 -0)
ScalarEvolutionExpander.h | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
diff -u llvm/include/llvm/Analysis/ScalarEvolutionExpander.h:1.2 llvm/include/llvm/Analysis/ScalarEvolutionExpander.h:1.3
--- llvm/include/llvm/Analysis/ScalarEvolutionExpander.h:1.2 Sat Jul 30 13:33:25 2005
+++ llvm/include/llvm/Analysis/ScalarEvolutionExpander.h Fri Feb 3 23:49:01 2006
@@ -41,6 +41,8 @@
public:
SCEVExpander(ScalarEvolution &se, LoopInfo &li) : SE(se), LI(li) {}
+ LoopInfo &getLoopInfo() const { return LI; }
+
/// clear - Erase the contents of the InsertedExpressions map so that users
/// trying to expand the same expression into multiple BasicBlocks or
/// different places within the same BasicBlock can do so.
More information about the llvm-commits
mailing list