summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnold Schwaighofer <aschwaighofer@apple.com>2014-02-15 18:16:56 +0000
committerArnold Schwaighofer <aschwaighofer@apple.com>2014-02-15 18:16:56 +0000
commita9db46bf3e2e38760635402bb8c5976255443964 (patch)
treedc5df71f8038e0a4d11658bd0d82270f33808f76 /include
parente67254860230c58a5de34578354a4d1d78c87e83 (diff)
downloadllvm-a9db46bf3e2e38760635402bb8c5976255443964.tar.gz
llvm-a9db46bf3e2e38760635402bb8c5976255443964.tar.bz2
llvm-a9db46bf3e2e38760635402bb8c5976255443964.tar.xz
Revert "SCEVExpander: Try hard not to create derived induction variables in other loops"
This reverts commit r201465. It broke an arm bot. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201466 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/ScalarEvolutionExpander.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Analysis/ScalarEvolutionExpander.h b/include/llvm/Analysis/ScalarEvolutionExpander.h
index 408e9152b8..4433be000d 100644
--- a/include/llvm/Analysis/ScalarEvolutionExpander.h
+++ b/include/llvm/Analysis/ScalarEvolutionExpander.h
@@ -260,9 +260,7 @@ namespace llvm {
PHINode *getAddRecExprPHILiterally(const SCEVAddRecExpr *Normalized,
const Loop *L,
Type *ExpandTy,
- Type *IntTy,
- Type *&TruncTy,
- bool &InvertStep);
+ Type *IntTy);
Value *expandIVInc(PHINode *PN, Value *StepV, const Loop *L,
Type *ExpandTy, Type *IntTy, bool useSubtract);
};