[polly] r290103 - Fix clang-format
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 19 06:06:40 PST 2016
Author: grosser
Date: Mon Dec 19 08:06:40 2016
New Revision: 290103
URL: http://llvm.org/viewvc/llvm-project?rev=290103&view=rev
Log:
Fix clang-format
Modified:
polly/trunk/lib/Analysis/ScopGraphPrinter.cpp
polly/trunk/lib/CodeGen/LoopGenerators.cpp
Modified: polly/trunk/lib/Analysis/ScopGraphPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopGraphPrinter.cpp?rev=290103&r1=290102&r2=290103&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopGraphPrinter.cpp (original)
+++ polly/trunk/lib/Analysis/ScopGraphPrinter.cpp Mon Dec 19 08:06:40 2016
@@ -135,8 +135,8 @@ struct DOTGraphTraits<ScopDetection *> :
std::string ErrorMessage = SD->regionIsInvalidBecause(R);
ErrorMessage = escapeString(ErrorMessage);
- O.indent(2 * (depth + 1)) << "label = \"" << Location << ErrorMessage
- << "\";\n";
+ O.indent(2 * (depth + 1))
+ << "label = \"" << Location << ErrorMessage << "\";\n";
if (SD->isMaxRegionInScop(*R)) {
O.indent(2 * (depth + 1)) << "style = filled;\n";
Modified: polly/trunk/lib/CodeGen/LoopGenerators.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/LoopGenerators.cpp?rev=290103&r1=290102&r2=290103&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/LoopGenerators.cpp (original)
+++ polly/trunk/lib/CodeGen/LoopGenerators.cpp Mon Dec 19 08:06:40 2016
@@ -188,8 +188,11 @@ void ParallelLoopGenerator::createCallSp
Type *Params[] = {PointerType::getUnqual(FunctionType::get(
Builder.getVoidTy(), Builder.getInt8PtrTy(), false)),
- Builder.getInt8PtrTy(), Builder.getInt32Ty(), LongType,
- LongType, LongType};
+ Builder.getInt8PtrTy(),
+ Builder.getInt32Ty(),
+ LongType,
+ LongType,
+ LongType};
FunctionType *Ty = FunctionType::get(Builder.getVoidTy(), Params, false);
F = Function::Create(Ty, Linkage, Name, M);
More information about the llvm-commits
mailing list