Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/polly/lib
diff options
context:
space:
mode:
authorTobias Grosser <tobias@grosser.es>2015-05-08 19:10:53 +0300
committerTobias Grosser <tobias@grosser.es>2015-05-08 19:10:53 +0300
commitf7b548047479b0d1fc28921d32d3108580ecf1a3 (patch)
tree3d3d26f104c245fba34e20ef42f67c8e931e2f69 /polly/lib
parentd3b50dce406abc9d337072cf9049c6f7e405658f (diff)
Adjust formatting to latest clang-format change
llvm-svn: 236875
Diffstat (limited to 'polly/lib')
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp
index 6addbbae8932..06214082795c 100644
--- a/polly/lib/CodeGen/LoopGenerators.cpp
+++ b/polly/lib/CodeGen/LoopGenerators.cpp
@@ -196,7 +196,12 @@ void ParallelLoopGenerator::createCallSpawnThreads(Value *SubFn,
}
Value *NumberOfThreads = Builder.getInt32(PollyNumThreads);
- Value *Args[] = {SubFn, SubFnParam, NumberOfThreads, LB, UB, Stride};
+ Value *Args[] = {SubFn,
+ SubFnParam,
+ NumberOfThreads,
+ LB,
+ UB,
+ Stride};
Builder.CreateCall(F, Args);
}