diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:10:56 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:10:56 +0000 | 
| commit | 044eb2f6afba375a914ac9d8024f8f5142bb912e (patch) | |
| tree | 1475247dc9f9fe5be155ebd4c9069c75aadf8c20 /include/llvm/Transforms/Utils/SimplifyIndVar.h | |
| parent | eb70dddbd77e120e5d490bd8fbe7ff3f8fa81c6b (diff) | |
Notes
Diffstat (limited to 'include/llvm/Transforms/Utils/SimplifyIndVar.h')
| -rw-r--r-- | include/llvm/Transforms/Utils/SimplifyIndVar.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/include/llvm/Transforms/Utils/SimplifyIndVar.h b/include/llvm/Transforms/Utils/SimplifyIndVar.h index 8d50aeb10d6e..a1dfed29a22d 100644 --- a/include/llvm/Transforms/Utils/SimplifyIndVar.h +++ b/include/llvm/Transforms/Utils/SimplifyIndVar.h @@ -26,6 +26,7 @@ class Loop;  class LoopInfo;  class PHINode;  class ScalarEvolution; +class SCEVExpander;  /// Interface for visiting interesting IV users that are recognized but not  /// simplified by this utility. @@ -47,7 +48,7 @@ public:  /// by using ScalarEvolution to analyze the IV's recurrence.  bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, DominatorTree *DT,                         LoopInfo *LI, SmallVectorImpl<WeakTrackingVH> &Dead, -                       IVVisitor *V = nullptr); +                       SCEVExpander &Rewriter, IVVisitor *V = nullptr);  /// SimplifyLoopIVs - Simplify users of induction variables within this  /// loop. This does not actually change or add IVs. | 
