[polly] r319973 - [NFC] Fix formatting

Philip Pfaffe via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 6 14:01:08 PST 2017


Author: pfaffe
Date: Wed Dec  6 14:01:08 2017
New Revision: 319973

URL: http://llvm.org/viewvc/llvm-project?rev=319973&view=rev
Log:
[NFC] Fix formatting

Modified:
    polly/trunk/lib/Support/SCEVAffinator.cpp

Modified: polly/trunk/lib/Support/SCEVAffinator.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Support/SCEVAffinator.cpp?rev=319973&r1=319972&r2=319973&view=diff
==============================================================================
--- polly/trunk/lib/Support/SCEVAffinator.cpp (original)
+++ polly/trunk/lib/Support/SCEVAffinator.cpp Wed Dec  6 14:01:08 2017
@@ -261,8 +261,7 @@ PWACtx SCEVAffinator::visitConstant(cons
       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 S
   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




More information about the llvm-commits mailing list