diff options
author | Michael Kruse <llvm@meinersbur.de> | 2017-11-21 19:25:26 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2017-11-21 19:25:26 +0000 |
commit | 58166b13e093a8f4eda9ee6bd36e733bd133b62f (patch) | |
tree | 7e29bde54fc6bf47e537abdbb742e2a8f9b48f5d /polly/lib/Support/SCEVAffinator.cpp | |
parent | 5f8980a995ce8a09c0f7b953063c30f32d28281e (diff) | |
download | bcm5719-llvm-58166b13e093a8f4eda9ee6bd36e733bd133b62f.tar.gz bcm5719-llvm-58166b13e093a8f4eda9ee6bd36e733bd133b62f.zip |
Run polly-update-format. NFC.
polly-check-format has been failing since at least r318517,
due to more than one cause.
llvm-svn: 318795
Diffstat (limited to 'polly/lib/Support/SCEVAffinator.cpp')
-rw-r--r-- | polly/lib/Support/SCEVAffinator.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/polly/lib/Support/SCEVAffinator.cpp b/polly/lib/Support/SCEVAffinator.cpp index 66985781d27..18223cbd52d 100644 --- a/polly/lib/Support/SCEVAffinator.cpp +++ b/polly/lib/Support/SCEVAffinator.cpp @@ -122,7 +122,8 @@ void SCEVAffinator::takeNonNegativeAssumption(PWACtx &PWAC) { PWAC.second = isl_set_union(PWAC.second, isl_set_copy(NegDom)); auto *Restriction = BB ? NegDom : isl_set_params(NegDom); auto DL = BB ? BB->getTerminator()->getDebugLoc() : DebugLoc(); - S->recordAssumption(UNSIGNED, isl::manage(Restriction), DL, AS_RESTRICTION, BB); + S->recordAssumption(UNSIGNED, isl::manage(Restriction), DL, AS_RESTRICTION, + BB); } __isl_give PWACtx SCEVAffinator::getPWACtxFromPWA(__isl_take isl_pw_aff *PWA) { @@ -168,7 +169,8 @@ __isl_give PWACtx SCEVAffinator::checkForWrapping(const SCEV *Expr, if (isl_set_is_empty(NotEqualSet)) isl_set_free(NotEqualSet); else - S->recordAssumption(WRAPPING, isl::manage(NotEqualSet), Loc, AS_RESTRICTION, BB); + S->recordAssumption(WRAPPING, isl::manage(NotEqualSet), Loc, AS_RESTRICTION, + BB); return PWAC; } @@ -317,7 +319,8 @@ SCEVAffinator::visitTruncateExpr(const SCEVTruncateExpr *Expr) { OutOfBoundsDom = isl_set_params(OutOfBoundsDom); } - S->recordAssumption(UNSIGNED, isl::manage(OutOfBoundsDom), DebugLoc(), AS_RESTRICTION, BB); + S->recordAssumption(UNSIGNED, isl::manage(OutOfBoundsDom), DebugLoc(), + AS_RESTRICTION, BB); return OpPWAC; } |