Fix clang-format
authorTobias Grosser <tobias@grosser.es>
Mon, 19 Dec 2016 14:06:40 +0000 (14:06 +0000)
committerTobias Grosser <tobias@grosser.es>
Mon, 19 Dec 2016 14:06:40 +0000 (14:06 +0000)
llvm-svn: 290103

polly/lib/Analysis/ScopGraphPrinter.cpp
polly/lib/CodeGen/LoopGenerators.cpp

index 4f9f7fd..39c1c5e 100644 (file)
@@ -135,8 +135,8 @@ struct DOTGraphTraits<ScopDetection *> : public DOTGraphTraits<RegionNode *> {
 
     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";
index 149cf2c..d01e85f 100644 (file)
@@ -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);