summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kruse <llvm@meinersbur.de>2016-05-02 12:25:36 +0000
committerMichael Kruse <llvm@meinersbur.de>2016-05-02 12:25:36 +0000
commitf7a4a94d05188f54f6a031c1ae02a2b21447ddfb (patch)
tree9a9e1066116d7bf63de9b89d5c08a3d55aa0b6ef
parentbc150127ae5ec1db87d8d338def3d14baddaf7d6 (diff)
downloadbcm5719-llvm-f7a4a94d05188f54f6a031c1ae02a2b21447ddfb.tar.gz
bcm5719-llvm-f7a4a94d05188f54f6a031c1ae02a2b21447ddfb.zip
Typo: ToComplex -> TooComplex. NFC.
llvm-svn: 268224
-rw-r--r--polly/lib/Analysis/ScopInfo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp
index 28274fbc2bd..f4852577805 100644
--- a/polly/lib/Analysis/ScopInfo.cpp
+++ b/polly/lib/Analysis/ScopInfo.cpp
@@ -1339,17 +1339,17 @@ buildConditionSets(ScopStmt &Stmt, Value *Condition, TerminatorInst *TI,
isl_set_intersect(ConsequenceCondSet, isl_set_copy(Domain)));
isl_set *AlternativeCondSet = nullptr;
- bool ToComplex =
+ bool TooComplex =
isl_set_n_basic_set(ConsequenceCondSet) >= MaxDisjunctionsInDomain;
- if (!ToComplex) {
+ if (!TooComplex) {
AlternativeCondSet = isl_set_subtract(isl_set_copy(Domain),
isl_set_copy(ConsequenceCondSet));
- ToComplex =
+ TooComplex =
isl_set_n_basic_set(AlternativeCondSet) >= MaxDisjunctionsInDomain;
}
- if (ToComplex) {
+ if (TooComplex) {
S.invalidate(COMPLEXITY, TI ? TI->getDebugLoc() : DebugLoc());
isl_set_free(AlternativeCondSet);
AlternativeCondSet = isl_set_empty(isl_set_get_space(ConsequenceCondSet));
OpenPOWER on IntegriCloud