summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/LoopGenerators.cpp
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2013-08-24 17:58:59 +0000
committerTobias Grosser <tobias@grosser.es>2013-08-24 17:58:59 +0000
commit4c932b8a4bef5bfd6ab24b1493c0092934eed109 (patch)
tree2d0149ac5ae418da68b452a0b75bdcbb5ee48206 /polly/lib/CodeGen/LoopGenerators.cpp
parentb64ab419363032ca6763a379c3b7ee6082e8d125 (diff)
downloadbcm5719-llvm-4c932b8a4bef5bfd6ab24b1493c0092934eed109.tar.gz
bcm5719-llvm-4c932b8a4bef5bfd6ab24b1493c0092934eed109.zip
Remove unneeded comma and update formatting
llvm-svn: 189177
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-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