summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 ba6591cf77f..f0cdc81a695 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);
}
OpenPOWER on IntegriCloud