[polly] r221483 - Fix formatting

Tobias Grosser tobias at grosser.es
Thu Nov 6 13:25:54 PST 2014


Author: grosser
Date: Thu Nov  6 15:25:54 2014
New Revision: 221483

URL: http://llvm.org/viewvc/llvm-project?rev=221483&view=rev
Log:
Fix formatting

Modified:
    polly/trunk/lib/CodeGen/IslAst.cpp

Modified: polly/trunk/lib/CodeGen/IslAst.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/IslAst.cpp?rev=221483&r1=221482&r2=221483&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/IslAst.cpp (original)
+++ polly/trunk/lib/CodeGen/IslAst.cpp Thu Nov  6 15:25:54 2014
@@ -44,8 +44,8 @@ using IslAstUserPayload = IslAstInfo::Is
 
 static cl::opt<bool>
     PollyParallel("polly-parallel",
-               cl::desc("Generate thread parallel code (isl codegen only)"),
-               cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
+                  cl::desc("Generate thread parallel code (isl codegen only)"),
+                  cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory));
 
 static cl::opt<bool> UseContext("polly-ast-use-context",
                                 cl::desc("Use context"), cl::Hidden,
@@ -454,7 +454,8 @@ bool IslAstInfo::isReductionParallel(__i
 }
 
 bool IslAstInfo::isExecutedInParallel(__isl_keep isl_ast_node *Node) {
-  return PollyParallel && isOutermostParallel(Node) && !isReductionParallel(Node);
+  return PollyParallel && isOutermostParallel(Node) &&
+         !isReductionParallel(Node);
 }
 
 isl_union_map *IslAstInfo::getSchedule(__isl_keep isl_ast_node *Node) {





More information about the llvm-commits mailing list