From b6945e33017b01a60977a76cf816625398851234 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Mon, 19 Dec 2016 14:06:40 +0000 Subject: [PATCH] Fix clang-format llvm-svn: 290103 --- polly/lib/Analysis/ScopGraphPrinter.cpp | 4 ++-- polly/lib/CodeGen/LoopGenerators.cpp | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/polly/lib/Analysis/ScopGraphPrinter.cpp b/polly/lib/Analysis/ScopGraphPrinter.cpp index 4f9f7fd..39c1c5e 100644 --- a/polly/lib/Analysis/ScopGraphPrinter.cpp +++ b/polly/lib/Analysis/ScopGraphPrinter.cpp @@ -135,8 +135,8 @@ struct DOTGraphTraits : public DOTGraphTraits { 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"; diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp index 149cf2c..d01e85f 100644 --- a/polly/lib/CodeGen/LoopGenerators.cpp +++ b/polly/lib/CodeGen/LoopGenerators.cpp @@ -188,8 +188,11 @@ void ParallelLoopGenerator::createCallSpawnThreads(Value *SubFn, 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); -- 2.7.4