[polly] r328005 - Adjust to clang-format changes

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 20 10:16:32 PDT 2018


Author: grosser
Date: Tue Mar 20 10:16:32 2018
New Revision: 328005

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

Modified:
    polly/trunk/include/polly/CodeGen/CodeGeneration.h
    polly/trunk/include/polly/CodeGen/IslAst.h
    polly/trunk/include/polly/CodeGen/IslNodeBuilder.h
    polly/trunk/include/polly/CodeGen/Utils.h
    polly/trunk/include/polly/DependenceInfo.h
    polly/trunk/include/polly/ForwardOpTree.h
    polly/trunk/include/polly/PolyhedralInfo.h
    polly/trunk/include/polly/PruneUnprofitable.h
    polly/trunk/include/polly/ScheduleOptimizer.h
    polly/trunk/include/polly/ScopBuilder.h
    polly/trunk/include/polly/ScopDetection.h
    polly/trunk/include/polly/ScopDetectionDiagnostic.h
    polly/trunk/include/polly/ScopInfo.h
    polly/trunk/include/polly/ScopPass.h
    polly/trunk/include/polly/Support/GICHelper.h
    polly/trunk/include/polly/Support/ISLOperators.h
    polly/trunk/include/polly/Support/ISLTools.h
    polly/trunk/include/polly/Support/VirtualInstruction.h
    polly/trunk/lib/Analysis/PruneUnprofitable.cpp
    polly/trunk/lib/Analysis/ScopDetection.cpp
    polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp
    polly/trunk/lib/Analysis/ScopGraphPrinter.cpp
    polly/trunk/lib/Analysis/ScopInfo.cpp
    polly/trunk/lib/CodeGen/CodeGeneration.cpp
    polly/trunk/lib/CodeGen/IslAst.cpp
    polly/trunk/lib/CodeGen/ManagedMemoryRewrite.cpp
    polly/trunk/lib/Transform/ForwardOpTree.cpp
    polly/trunk/lib/Transform/MaximalStaticExpansion.cpp
    polly/trunk/lib/Transform/ScheduleOptimizer.cpp
    polly/trunk/lib/Transform/ScopInliner.cpp
    polly/trunk/unittests/Flatten/FlattenTest.cpp
    polly/trunk/unittests/Isl/IslTest.cpp

Modified: polly/trunk/include/polly/CodeGen/CodeGeneration.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/CodeGen/CodeGeneration.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/CodeGen/CodeGeneration.h (original)
+++ polly/trunk/include/polly/CodeGen/CodeGeneration.h Tue Mar 20 10:16:32 2018
@@ -18,7 +18,6 @@
 namespace llvm {
 
 class BasicBlock;
-
 } // namespace llvm
 
 namespace polly {
@@ -44,7 +43,6 @@ struct CodeGenerationPass : public PassI
 };
 
 extern bool PerfMonitoring;
-
 } // namespace polly
 
 #endif // POLLY_CODEGENERATION_H

Modified: polly/trunk/include/polly/CodeGen/IslAst.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/CodeGen/IslAst.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/CodeGen/IslAst.h (original)
+++ polly/trunk/include/polly/CodeGen/IslAst.h Tue Mar 20 10:16:32 2018
@@ -36,7 +36,6 @@ class PassRegistry;
 class raw_ostream;
 
 void initializeIslAstInfoWrapperPassPass(PassRegistry &);
-
 } // namespace llvm
 
 struct isl_ast_build;
@@ -230,7 +229,6 @@ struct IslAstPrinterPass : public PassIn
 
   raw_ostream &OS;
 };
-
 } // namespace polly
 
 #endif // POLLY_ISLAST_H

Modified: polly/trunk/include/polly/CodeGen/IslNodeBuilder.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/CodeGen/IslNodeBuilder.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/CodeGen/IslNodeBuilder.h (original)
+++ polly/trunk/include/polly/CodeGen/IslNodeBuilder.h Tue Mar 20 10:16:32 2018
@@ -46,7 +46,6 @@ class ScalarEvolution;
 class SCEV;
 class Type;
 class Value;
-
 } // namespace llvm
 
 namespace polly {
@@ -55,7 +54,6 @@ struct InvariantEquivClassTy;
 class MemoryAccess;
 class Scop;
 class ScopStmt;
-
 } // namespace polly
 
 struct isl_ast_node;

Modified: polly/trunk/include/polly/CodeGen/Utils.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/CodeGen/Utils.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/CodeGen/Utils.h (original)
+++ polly/trunk/include/polly/CodeGen/Utils.h Tue Mar 20 10:16:32 2018
@@ -69,6 +69,5 @@ using BBPair = std::pair<llvm::BasicBloc
 std::pair<BBPair, llvm::BranchInst *>
 executeScopConditionally(Scop &S, llvm::Value *RTC, llvm::DominatorTree &DT,
                          llvm::RegionInfo &RI, llvm::LoopInfo &LI);
-
 } // namespace polly
 #endif

Modified: polly/trunk/include/polly/DependenceInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/DependenceInfo.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/DependenceInfo.h (original)
+++ polly/trunk/include/polly/DependenceInfo.h Tue Mar 20 10:16:32 2018
@@ -310,7 +310,6 @@ private:
   /// Scop to Dependence map for the current function.
   ScopToDepsMapTy ScopToDepsMap;
 };
-
 } // namespace polly
 
 namespace llvm {

Modified: polly/trunk/include/polly/ForwardOpTree.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ForwardOpTree.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ForwardOpTree.h (original)
+++ polly/trunk/include/polly/ForwardOpTree.h Tue Mar 20 10:16:32 2018
@@ -19,7 +19,6 @@ namespace llvm {
 class PassRegistry;
 
 void initializeForwardOpTreePass(PassRegistry &);
-
 } // namespace llvm
 
 namespace polly {
@@ -27,7 +26,6 @@ namespace polly {
 class ScopPass;
 
 ScopPass *createForwardOpTreePass();
-
 } // namespace polly
 
 #endif // POLLY_FORWARDOPTREE_H

Modified: polly/trunk/include/polly/PolyhedralInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/PolyhedralInfo.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/PolyhedralInfo.h (original)
+++ polly/trunk/include/polly/PolyhedralInfo.h Tue Mar 20 10:16:32 2018
@@ -91,7 +91,6 @@ private:
   ScopInfo *SI;
   DependenceInfoWrapperPass *DI;
 };
-
 } // end namespace polly
 
 namespace llvm {

Modified: polly/trunk/include/polly/PruneUnprofitable.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/PruneUnprofitable.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/PruneUnprofitable.h (original)
+++ polly/trunk/include/polly/PruneUnprofitable.h Tue Mar 20 10:16:32 2018
@@ -20,13 +20,11 @@ class Pass;
 class PassRegistry;
 
 void initializePruneUnprofitablePass(PassRegistry &);
-
 } // namespace llvm
 
 namespace polly {
 
 llvm::Pass *createPruneUnprofitablePass();
-
 } // namespace polly
 
 #endif // POLLY_PRUNEUNPROFITABLE_H

Modified: polly/trunk/include/polly/ScheduleOptimizer.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScheduleOptimizer.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScheduleOptimizer.h (original)
+++ polly/trunk/include/polly/ScheduleOptimizer.h Tue Mar 20 10:16:32 2018
@@ -16,7 +16,6 @@
 namespace llvm {
 
 class TargetTransformInfo;
-
 } // namespace llvm
 
 struct isl_schedule_node;
@@ -70,7 +69,6 @@ struct MatMulInfoTy {
 };
 
 extern bool DisablePollyTiling;
-
 } // namespace polly
 
 class ScheduleTreeOptimizer {

Modified: polly/trunk/include/polly/ScopBuilder.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopBuilder.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopBuilder.h (original)
+++ polly/trunk/include/polly/ScopBuilder.h Tue Mar 20 10:16:32 2018
@@ -44,7 +44,6 @@ class Value;
 
 void initializeScopInfoRegionPassPass(PassRegistry &);
 void initializeScopInfoWrapperPassPass(PassRegistry &);
-
 } // end namespace llvm
 
 namespace polly {
@@ -404,7 +403,6 @@ public:
   ///         for the region
   std::unique_ptr<Scop> getScop() { return std::move(scop); }
 };
-
 } // end namespace polly
 
 #endif // POLLY_SCOPBUILDER_H

Modified: polly/trunk/include/polly/ScopDetection.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopDetection.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopDetection.h (original)
+++ polly/trunk/include/polly/ScopDetection.h Tue Mar 20 10:16:32 2018
@@ -90,7 +90,6 @@ class SwitchInst;
 class Value;
 
 void initializeScopDetectionWrapperPassPass(PassRegistry &);
-
 } // namespace llvm
 
 namespace polly {
@@ -670,7 +669,6 @@ struct ScopDetectionWrapperPass : public
   ScopDetection &getSD() { return *Result; }
   const ScopDetection &getSD() const { return *Result; }
 };
-
 } // namespace polly
 
 #endif // POLLY_SCOPDETECTION_H

Modified: polly/trunk/include/polly/ScopDetectionDiagnostic.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopDetectionDiagnostic.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopDetectionDiagnostic.h (original)
+++ polly/trunk/include/polly/ScopDetectionDiagnostic.h Tue Mar 20 10:16:32 2018
@@ -42,7 +42,6 @@ class raw_ostream;
 class Region;
 class SCEV;
 class Value;
-
 } // namespace llvm
 
 namespace polly {
@@ -830,7 +829,6 @@ public:
   std::string getEndUserMessage() const override;
   //@}
 };
-
 } // namespace polly
 
 #endif // POLLY_SCOPDETECTIONDIAGNOSTIC_H

Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue Mar 20 10:16:32 2018
@@ -75,7 +75,6 @@ class Value;
 
 void initializeScopInfoRegionPassPass(PassRegistry &);
 void initializeScopInfoWrapperPassPass(PassRegistry &);
-
 } // end namespace llvm
 
 struct isl_map;
@@ -3203,7 +3202,6 @@ public:
 
   void getAnalysisUsage(AnalysisUsage &AU) const override;
 };
-
 } // end namespace polly
 
 #endif // POLLY_SCOPINFO_H

Modified: polly/trunk/include/polly/ScopPass.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopPass.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopPass.h (original)
+++ polly/trunk/include/polly/ScopPass.h Tue Mar 20 10:16:32 2018
@@ -268,7 +268,6 @@ FunctionToScopPassAdaptor<ScopPassT>
 createFunctionToScopPassAdaptor(ScopPassT Pass) {
   return FunctionToScopPassAdaptor<ScopPassT>(std::move(Pass));
 }
-
 } // namespace polly
 
 #endif

Modified: polly/trunk/include/polly/Support/GICHelper.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/Support/GICHelper.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/Support/GICHelper.h (original)
+++ polly/trunk/include/polly/Support/GICHelper.h Tue Mar 20 10:16:32 2018
@@ -430,7 +430,6 @@ public:
     return isl_ctx_last_error(IslCtx) == isl_error_quota;
   }
 };
-
 } // end namespace polly
 
 #endif

Modified: polly/trunk/include/polly/Support/ISLOperators.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/Support/ISLOperators.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/Support/ISLOperators.h (original)
+++ polly/trunk/include/polly/Support/ISLOperators.h Tue Mar 20 10:16:32 2018
@@ -115,5 +115,4 @@ inline isl::pw_aff operator%(isl::pw_aff
   isl::ctx ctx = A.get_ctx();
   return A % isl::val(ctx, i);
 }
-
 } // namespace polly

Modified: polly/trunk/include/polly/Support/ISLTools.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/Support/ISLTools.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/Support/ISLTools.h (original)
+++ polly/trunk/include/polly/Support/ISLTools.h Tue Mar 20 10:16:32 2018
@@ -522,7 +522,6 @@ void dumpExpanded(__isl_keep isl_map *Ma
 void dumpExpanded(__isl_keep isl_union_set *USet);
 void dumpExpanded(__isl_keep isl_union_map *UMap);
 /// @}
-
 } // namespace polly
 
 #endif /* POLLY_ISLTOOLS_H */

Modified: polly/trunk/include/polly/Support/VirtualInstruction.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/Support/VirtualInstruction.h?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/include/polly/Support/VirtualInstruction.h (original)
+++ polly/trunk/include/polly/Support/VirtualInstruction.h Tue Mar 20 10:16:32 2018
@@ -307,7 +307,6 @@ void markReachable(Scop *S, LoopInfo *LI
                    DenseSet<VirtualInstruction> &UsedInsts,
                    DenseSet<MemoryAccess *> &UsedAccs,
                    ScopStmt *OnlyLocal = nullptr);
-
 } // namespace polly
 
 namespace llvm {

Modified: polly/trunk/lib/Analysis/PruneUnprofitable.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/PruneUnprofitable.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/PruneUnprofitable.cpp (original)
+++ polly/trunk/lib/Analysis/PruneUnprofitable.cpp Tue Mar 20 10:16:32 2018
@@ -92,7 +92,6 @@ public:
     return false;
   }
 };
-
 } // namespace
 
 char PruneUnprofitable::ID;

Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Tue Mar 20 10:16:32 2018
@@ -304,7 +304,6 @@ public:
     return DI->getKind() == PluginDiagnosticKind;
   }
 };
-
 } // namespace
 
 int DiagnosticScopFound::PluginDiagnosticKind =
@@ -854,7 +853,6 @@ public:
 private:
   std::vector<const SCEV *> *Terms;
 };
-
 } // namespace
 
 SmallVector<const SCEV *, 4>

Modified: polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp Tue Mar 20 10:16:32 2018
@@ -96,7 +96,6 @@ template <typename T> std::string operat
 
   return LHS.concat(Buf).str();
 }
-
 } // namespace polly
 
 namespace llvm {
@@ -106,7 +105,6 @@ static bool operator<(const DebugLoc &LH
   return LHS.getLine() < RHS.getLine() ||
          (LHS.getLine() == RHS.getLine() && LHS.getCol() < RHS.getCol());
 }
-
 } // namespace llvm
 
 namespace polly {
@@ -780,5 +778,4 @@ const DebugLoc &ReportUnprofitable::getD
 bool ReportUnprofitable::classof(const RejectReason *RR) {
   return RR->getKind() == RejectReasonKind::Unprofitable;
 }
-
 } // namespace polly

Modified: polly/trunk/lib/Analysis/ScopGraphPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopGraphPrinter.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopGraphPrinter.cpp (original)
+++ polly/trunk/lib/Analysis/ScopGraphPrinter.cpp Tue Mar 20 10:16:32 2018
@@ -197,7 +197,6 @@ struct DOTGraphTraits<ScopDetectionWrapp
                        O, 4);
   }
 };
-
 } // end namespace llvm
 
 struct ScopViewer

Modified: polly/trunk/lib/Analysis/ScopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopInfo.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopInfo.cpp (original)
+++ polly/trunk/lib/Analysis/ScopInfo.cpp Tue Mar 20 10:16:32 2018
@@ -1926,7 +1926,6 @@ public:
 
   bool isDone() { return FoundInside; }
 };
-
 } // end anonymous namespace
 
 const SCEV *Scop::getRepresentingInvariantLoadSCEV(const SCEV *E) const {

Modified: polly/trunk/lib/CodeGen/CodeGeneration.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/CodeGeneration.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/CodeGeneration.cpp (original)
+++ polly/trunk/lib/CodeGen/CodeGeneration.cpp Tue Mar 20 10:16:32 2018
@@ -94,7 +94,6 @@ void markBlockUnreachable(BasicBlock &Bl
   Builder.CreateUnreachable();
   OrigTerminator->eraseFromParent();
 }
-
 } // namespace polly
 
 static void verifyGeneratedFunction(Scop &S, Function &F, IslAstInfo &AI) {
@@ -369,7 +368,6 @@ public:
     //        region tree.
   }
 };
-
 } // namespace
 
 PreservedAnalyses CodeGenerationPass::run(Scop &S, ScopAnalysisManager &SAM,

Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Tue Mar 20 10:16:32 2018
@@ -122,7 +122,6 @@ struct AstBuildUserInfo {
   /// The last iterator id created for the current SCoP.
   isl_id *LastForNodeId = nullptr;
 };
-
 } // namespace polly
 
 /// Free an IslAstUserPayload object pointed to by @p Ptr.

Modified: polly/trunk/lib/CodeGen/ManagedMemoryRewrite.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/ManagedMemoryRewrite.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/ManagedMemoryRewrite.cpp (original)
+++ polly/trunk/lib/CodeGen/ManagedMemoryRewrite.cpp Tue Mar 20 10:16:32 2018
@@ -413,7 +413,6 @@ public:
     return true;
   }
 };
-
 } // namespace
 char ManagedMemoryRewritePass::ID = 42;
 

Modified: polly/trunk/lib/Transform/ForwardOpTree.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/ForwardOpTree.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Transform/ForwardOpTree.cpp (original)
+++ polly/trunk/lib/Transform/ForwardOpTree.cpp Tue Mar 20 10:16:32 2018
@@ -1007,7 +1007,6 @@ public:
 }; // class ForwardOpTree
 
 char ForwardOpTree::ID;
-
 } // namespace
 
 ScopPass *polly::createForwardOpTreePass() { return new ForwardOpTree(); }

Modified: polly/trunk/lib/Transform/MaximalStaticExpansion.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/MaximalStaticExpansion.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Transform/MaximalStaticExpansion.cpp (original)
+++ polly/trunk/lib/Transform/MaximalStaticExpansion.cpp Tue Mar 20 10:16:32 2018
@@ -112,7 +112,6 @@ private:
   void expandPhi(Scop &S, const ScopArrayInfo *SAI,
                  const isl::union_map &Dependences);
 };
-
 } // namespace
 
 #ifndef NDEBUG

Modified: polly/trunk/lib/Transform/ScheduleOptimizer.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/ScheduleOptimizer.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Transform/ScheduleOptimizer.cpp (original)
+++ polly/trunk/lib/Transform/ScheduleOptimizer.cpp Tue Mar 20 10:16:32 2018
@@ -1411,7 +1411,6 @@ public:
 private:
   isl_schedule *LastSchedule = nullptr;
 };
-
 } // namespace
 
 char IslScheduleOptimizer::ID = 0;

Modified: polly/trunk/lib/Transform/ScopInliner.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Transform/ScopInliner.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/lib/Transform/ScopInliner.cpp (original)
+++ polly/trunk/lib/Transform/ScopInliner.cpp Tue Mar 20 10:16:32 2018
@@ -102,7 +102,6 @@ public:
     CallGraphSCCPass::getAnalysisUsage(AU);
   }
 };
-
 } // namespace
 char ScopInliner::ID;
 

Modified: polly/trunk/unittests/Flatten/FlattenTest.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/unittests/Flatten/FlattenTest.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/unittests/Flatten/FlattenTest.cpp (original)
+++ polly/trunk/unittests/Flatten/FlattenTest.cpp Tue Mar 20 10:16:32 2018
@@ -66,5 +66,4 @@ TEST(Flatten, FlattenLoop) {
       "{ A[i] -> [i, 0] : 0 <= i < 10; B[i] -> [i, 1] : 0 <= i < 10 }",
       "{ A[i] -> [2i] : 0 <= i < 10; B[i] -> [2i + 1] : 0 <= i < 10 }"));
 }
-
 } // anonymous namespace

Modified: polly/trunk/unittests/Isl/IslTest.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/unittests/Isl/IslTest.cpp?rev=328005&r1=328004&r2=328005&view=diff
==============================================================================
--- polly/trunk/unittests/Isl/IslTest.cpp (original)
+++ polly/trunk/unittests/Isl/IslTest.cpp Tue Mar 20 10:16:32 2018
@@ -1071,5 +1071,4 @@ TEST(DeLICM, apply) {
                 UMAP("{ DomainRangeA[] -> NewDomainRangeA[];"
                      "DomainRangeB[] -> NewDomainRangeB[] }")));
 }
-
 } // anonymous namespace




More information about the llvm-commits mailing list