[polly] r334941 - Adjust for clang-format changes

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 18 06:01:53 PDT 2018


Author: grosser
Date: Mon Jun 18 06:01:52 2018
New Revision: 334941

URL: http://llvm.org/viewvc/llvm-project?rev=334941&view=rev
Log:
Adjust for clang-format changes

Modified:
    polly/trunk/lib/Analysis/ScopInfo.cpp

Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=334941&r1=334940&r2=334941&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Mon Jun 18 06:01:52 2018
@@ -2539,8 +2539,8 @@ bool Scop::buildDomains(Region *R, Domin
 ///
 /// This function assumes @p NewL and @p OldL are equal or there is a CFG
 /// edge from @p OldL to @p NewL.
-static isl::set adjustDomainDimensions(Scop &S, isl::set Dom, Loop *OldL, Loop
-                                       *NewL) {
+static isl::set adjustDomainDimensions(Scop &S, isl::set Dom, Loop *OldL,
+                                       Loop *NewL) {
   // If the loops are the same there is nothing to do.
   if (NewL == OldL)
     return Dom;
@@ -2636,8 +2636,8 @@ bool Scop::propagateInvalidStmtDomains(
 
       Loop *SuccBBLoop = getFirstNonBoxedLoopFor(SuccBB, LI, getBoxedLoops());
 
-      auto AdjustedInvalidDomain = adjustDomainDimensions(*this, InvalidDomain,
-                                                          BBLoop, SuccBBLoop);
+      auto AdjustedInvalidDomain =
+          adjustDomainDimensions(*this, InvalidDomain, BBLoop, SuccBBLoop);
 
       isl::set SuccInvalidDomain = InvalidDomainMap[SuccBB];
       SuccInvalidDomain = SuccInvalidDomain.unite(AdjustedInvalidDomain);
@@ -2693,8 +2693,8 @@ void Scop::propagateDomainConstraintsToR
 
   // Since the dimensions of @p BB and @p ExitBB might be different we have to
   // adjust the domain before we can propagate it.
-  isl::set AdjustedDomain = adjustDomainDimensions(*this, Domain, BBLoop,
-                                                   ExitBBLoop);
+  isl::set AdjustedDomain =
+      adjustDomainDimensions(*this, Domain, BBLoop, ExitBBLoop);
   isl::set &ExitDomain = DomainMap[ExitBB];
 
   // If the exit domain is not yet created we set it otherwise we "add" the




More information about the llvm-commits mailing list