Revert "Adjust formatting to latest clang-format change"
authorTobias Grosser <tobias@grosser.es>
Mon, 11 May 2015 13:43:04 +0000 (13:43 +0000)
committerTobias Grosser <tobias@grosser.es>
Mon, 11 May 2015 13:43:04 +0000 (13:43 +0000)
This reverts commit 236875. Daniel fixed the clang-format bug that introduced
the changed formatting.

llvm-svn: 236994

polly/lib/CodeGen/LoopGenerators.cpp

index ba6591c..f0cdc81 100644 (file)
@@ -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);
 }