summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp
index da0c782bc6d..fa152ad3611 100644
--- a/polly/lib/CodeGen/LoopGenerators.cpp
+++ b/polly/lib/CodeGen/LoopGenerators.cpp
@@ -143,8 +143,8 @@ void OMPGenerator::createCallParallelLoopStart(
F = Function::Create(Ty, Linkage, Name, M);
}
- Value *Args[] = { SubFunction, SubfunctionParam, NumberOfThreads, LowerBound,
- UpperBound, Stride, };
+ Value *Args[] = { SubFunction, SubfunctionParam, NumberOfThreads,
+ LowerBound, UpperBound, Stride };
Builder.CreateCall(F, Args);
}
OpenPOWER on IntegriCloud