Fix formatting

llvm-svn: 221483
This commit is contained in:
Tobias Grosser 2014-11-06 21:25:54 +00:00
parent c1247f5596
commit 81641db93e
1 changed files with 4 additions and 3 deletions

View File

@ -44,8 +44,8 @@ using IslAstUserPayload = IslAstInfo::IslAstUserPayload;
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(__isl_keep isl_ast_node *Node) {
}
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) {