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-11 16:43:04 +0300
committerTobias Grosser <tobias@grosser.es>2015-05-11 16:43:04 +0300
commitd4ea2f48c4338fca671b8093efc1116d839ae43c (patch)
tree6622f65d8f79b728da69d371436acfb6c9066315 /polly/lib
parentc4f4d6c437db7fc0a674c38ff0275bf7f0887158 (diff)
Revert "Adjust formatting to latest clang-format change"
This reverts commit 236875. Daniel fixed the clang-format bug that introduced the changed formatting. llvm-svn: 236994
Diffstat (limited to 'polly/lib')
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp
index ba6591cf77f1..f0cdc81a695d 100644
--- a/polly/lib/CodeGen/LoopGenerators.cpp
+++ b/polly/lib/CodeGen/LoopGenerators.cpp
@@ -196,12 +196,7 @@ 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);
}