[polly] r296635 - Fix namespaces after clang-format update
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 1 07:54:28 PST 2017
Author: grosser
Date: Wed Mar 1 09:54:27 2017
New Revision: 296635
URL: http://llvm.org/viewvc/llvm-project?rev=296635&view=rev
Log:
Fix namespaces after clang-format update
Modified:
polly/trunk/include/polly/DeLICM.h
polly/trunk/include/polly/FlattenSchedule.h
polly/trunk/include/polly/PolyhedralInfo.h
polly/trunk/lib/CodeGen/PPCGCodeGeneration.cpp
polly/trunk/lib/Support/GICHelper.cpp
Modified: polly/trunk/include/polly/DeLICM.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/DeLICM.h?rev=296635&r1=296634&r2=296635&view=diff
==============================================================================
--- polly/trunk/include/polly/DeLICM.h (original)
+++ polly/trunk/include/polly/DeLICM.h Wed Mar 1 09:54:27 2017
@@ -23,7 +23,7 @@
namespace llvm {
class PassRegistry;
class Pass;
-} // anonymous namespace
+} // namespace llvm
namespace polly {
/// Create a new DeLICM pass instance.
Modified: polly/trunk/include/polly/FlattenSchedule.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/FlattenSchedule.h?rev=296635&r1=296634&r2=296635&view=diff
==============================================================================
--- polly/trunk/include/polly/FlattenSchedule.h (original)
+++ polly/trunk/include/polly/FlattenSchedule.h Wed Mar 1 09:54:27 2017
@@ -19,7 +19,7 @@
namespace llvm {
class PassRegistry;
class Pass;
-} // anonymous namespace
+} // namespace llvm
namespace polly {
llvm::Pass *createFlattenSchedulePass();
Modified: polly/trunk/include/polly/PolyhedralInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/PolyhedralInfo.h?rev=296635&r1=296634&r2=296635&view=diff
==============================================================================
--- polly/trunk/include/polly/PolyhedralInfo.h (original)
+++ polly/trunk/include/polly/PolyhedralInfo.h Wed Mar 1 09:54:27 2017
@@ -22,7 +22,7 @@
namespace llvm {
class Loop;
-}
+} // namespace llvm
namespace polly {
@@ -96,6 +96,6 @@ private:
namespace llvm {
class PassRegistry;
void initializePolyhedralInfoPass(llvm::PassRegistry &);
-}
+} // namespace llvm
#endif
Modified: polly/trunk/lib/CodeGen/PPCGCodeGeneration.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/PPCGCodeGeneration.cpp?rev=296635&r1=296634&r2=296635&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/PPCGCodeGeneration.cpp (original)
+++ polly/trunk/lib/CodeGen/PPCGCodeGeneration.cpp Wed Mar 1 09:54:27 2017
@@ -2490,7 +2490,7 @@ public:
AU.addPreserved<ScopInfoRegionPass>();
}
};
-}
+} // namespace
char PPCGCodeGeneration::ID = 1;
Modified: polly/trunk/lib/Support/GICHelper.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Support/GICHelper.cpp?rev=296635&r1=296634&r2=296635&view=diff
==============================================================================
--- polly/trunk/lib/Support/GICHelper.cpp (original)
+++ polly/trunk/lib/Support/GICHelper.cpp Wed Mar 1 09:54:27 2017
@@ -225,7 +225,7 @@ DEFINE_ISLPTR(multi_pw_aff)
DEFINE_ISLPTR(union_pw_aff)
DEFINE_ISLPTR(multi_union_pw_aff)
DEFINE_ISLPTR(union_pw_multi_aff)
-}
+} // namespace polly
void polly::foreachElt(const IslPtr<isl_map> &Map,
const std::function<void(IslPtr<isl_basic_map>)> &F) {
More information about the llvm-commits
mailing list