diff options
-rw-r--r-- | polly/lib/CodeGen/IslAst.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/IslAst.cpp b/polly/lib/CodeGen/IslAst.cpp index 52c6bc7..494fed1a1 100644 --- a/polly/lib/CodeGen/IslAst.cpp +++ b/polly/lib/CodeGen/IslAst.cpp @@ -210,8 +210,7 @@ static bool astScheduleDimIsParallel(__isl_keep isl_ast_build *Build, if (!astScheduleDimIsParallel(Build, Deps)) return false; - isl_union_map *RedDeps = - D->getDependences(Dependences::TYPE_TC_RED); + isl_union_map *RedDeps = D->getDependences(Dependences::TYPE_TC_RED); if (!astScheduleDimIsParallel(Build, RedDeps)) IsReductionParallel = true; |