diff options
author | Tobias Grosser <tobias@grosser.es> | 2013-08-24 17:58:59 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2013-08-24 17:58:59 +0000 |
commit | 4c932b8a4bef5bfd6ab24b1493c0092934eed109 (patch) | |
tree | 2d0149ac5ae418da68b452a0b75bdcbb5ee48206 /polly/lib/CodeGen/LoopGenerators.cpp | |
parent | b64ab419363032ca6763a379c3b7ee6082e8d125 (diff) | |
download | bcm5719-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.cpp | 4 |
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); } |