Skip to content

Commit

Permalink
Adjust formatting to latest clang-format change
Browse files Browse the repository at this point in the history
llvm-svn: 236875
  • Loading branch information
tobiasgrosser committed May 8, 2015
1 parent d3b50dc commit f7b5480
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion polly/lib/CodeGen/LoopGenerators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit f7b5480

Please sign in to comment.