From 6bfeba24d39ed0915ebb5867df650ac7db3eb5dd Mon Sep 17 00:00:00 2001 From: Roman Gareev Date: Tue, 22 Aug 2017 17:43:03 +0000 Subject: [PATCH] [NFC] Fix the broken comment. llvm-svn: 311477 --- polly/lib/CodeGen/IslNodeBuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polly/lib/CodeGen/IslNodeBuilder.cpp b/polly/lib/CodeGen/IslNodeBuilder.cpp index 8ed572efeced..e79e498d6251 100644 --- a/polly/lib/CodeGen/IslNodeBuilder.cpp +++ b/polly/lib/CodeGen/IslNodeBuilder.cpp @@ -482,6 +482,7 @@ void IslNodeBuilder::createForVector(__isl_take isl_ast_node *For, isl_ast_expr_free(Iterator); } +namespace { /// Restore the initial ordering of dimensions of the band node /// /// In case the band node represents all the dimensions of the iteration @@ -490,7 +491,6 @@ void IslNodeBuilder::createForVector(__isl_take isl_ast_node *For, /// /// @param Node The band node to be modified. /// @return The modified schedule node. -namespace { bool IsLoopVectorizerDisabled(isl::ast_node Node) { assert(isl_ast_node_get_type(Node.keep()) == isl_ast_node_for); auto Body = Node.for_get_body();