| Index: include/llvm/Analysis/ScalarEvolution.h
|
| diff --git a/include/llvm/Analysis/ScalarEvolution.h b/include/llvm/Analysis/ScalarEvolution.h
|
| index 349447fbbb624ef66923d40a1ee59112593b87e4..306549fba46cc57d79b3bc5e1b18fddcd9aceced 100644
|
| --- a/include/llvm/Analysis/ScalarEvolution.h
|
| +++ b/include/llvm/Analysis/ScalarEvolution.h
|
| @@ -453,8 +453,7 @@ namespace llvm {
|
| ExitLimit ComputeExitLimitFromCond(const Loop *L,
|
| Value *ExitCond,
|
| BasicBlock *TBB,
|
| - BasicBlock *FBB,
|
| - bool IsSubExpr);
|
| + BasicBlock *FBB);
|
|
|
| /// ComputeExitLimitFromICmp - Compute the number of times the backedge of
|
| /// the specified loop will execute if its exit condition were a conditional
|
| @@ -462,8 +461,7 @@ namespace llvm {
|
| ExitLimit ComputeExitLimitFromICmp(const Loop *L,
|
| ICmpInst *ExitCond,
|
| BasicBlock *TBB,
|
| - BasicBlock *FBB,
|
| - bool IsSubExpr);
|
| + BasicBlock *FBB);
|
|
|
| /// ComputeLoadConstantCompareExitLimit - Given an exit condition
|
| /// of 'icmp op load X, cst', try to see if we can compute the
|
| @@ -485,7 +483,7 @@ namespace llvm {
|
| /// HowFarToZero - Return the number of times an exit condition comparing
|
| /// the specified value to zero will execute. If not computable, return
|
| /// CouldNotCompute.
|
| - ExitLimit HowFarToZero(const SCEV *V, const Loop *L, bool IsSubExpr);
|
| + ExitLimit HowFarToZero(const SCEV *V, const Loop *L);
|
|
|
| /// HowFarToNonZero - Return the number of times an exit condition checking
|
| /// the specified value for nonzero will execute. If not computable, return
|
| @@ -497,7 +495,7 @@ namespace llvm {
|
| /// computable, return CouldNotCompute. isSigned specifies whether the
|
| /// less-than is signed.
|
| ExitLimit HowManyLessThans(const SCEV *LHS, const SCEV *RHS,
|
| - const Loop *L, bool isSigned, bool IsSubExpr);
|
| + const Loop *L, bool isSigned);
|
|
|
| /// getPredecessorWithUniqueSuccessorForBB - Return a predecessor of BB
|
| /// (which may not be an immediate predecessor) which has exactly one
|
|
|