summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Pfaffe <philip.pfaffe@gmail.com>2017-12-06 22:01:08 +0000
committerPhilip Pfaffe <philip.pfaffe@gmail.com>2017-12-06 22:01:08 +0000
commit8abf53067ab526587d84731679a26b009b3ba57b (patch)
treebe63ed05fcf920b5bcaad27f57b725daedb70058
parent6eba20354733739906dd9b9239424c0ae7816269 (diff)
[NFC] Fix formatting
-rw-r--r--polly/lib/Support/SCEVAffinator.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/polly/lib/Support/SCEVAffinator.cpp b/polly/lib/Support/SCEVAffinator.cpp
index 1a0e15c3d17..5be900d0a8f 100644
--- a/polly/lib/Support/SCEVAffinator.cpp
+++ b/polly/lib/Support/SCEVAffinator.cpp
@@ -261,8 +261,7 @@ PWACtx SCEVAffinator::visitConstant(const SCEVConstant *Expr) {
isl::manage(isl_pw_aff_from_aff(isl_aff_val_on_domain(ls, v))));
}
-PWACtx
-SCEVAffinator::visitTruncateExpr(const SCEVTruncateExpr *Expr) {
+PWACtx SCEVAffinator::visitTruncateExpr(const SCEVTruncateExpr *Expr) {
// Truncate operations are basically modulo operations, thus we can
// model them that way. However, for large types we assume the operand
// to fit in the new type size instead of introducing a modulo with a very
@@ -298,8 +297,7 @@ SCEVAffinator::visitTruncateExpr(const SCEVTruncateExpr *Expr) {
return OpPWAC;
}
-PWACtx
-SCEVAffinator::visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
+PWACtx SCEVAffinator::visitZeroExtendExpr(const SCEVZeroExtendExpr *Expr) {
// A zero-extended value can be interpreted as a piecewise defined signed
// value. If the value was non-negative it stays the same, otherwise it
// is the sum of the original value and 2^n where n is the bit-width of