Small style improvements
authorTobias Grosser <grosser@fim.uni-passau.de>
Sat, 13 Jul 2013 16:58:07 +0000 (16:58 +0000)
committerTobias Grosser <grosser@fim.uni-passau.de>
Sat, 13 Jul 2013 16:58:07 +0000 (16:58 +0000)
llvm-svn: 186248

polly/lib/Analysis/ScopGraphPrinter.cpp
polly/lib/Exchange/JSONExporter.cpp
polly/lib/IndVarSimplify.cpp

index 6f7668589ca7be5b42e97bd366e30f27d154c5b2..ab87d2678b2bebf3a332c0842094a52b111a1ff2 100644 (file)
@@ -149,8 +149,9 @@ struct DOTGraphTraits<ScopDetection *> : public DOTGraphTraits<RegionNode *> {
          BI != BE; ++BI)
       if (RI->getRegionFor(*BI) == R)
         O.indent(2 * (depth + 1))
-            << "Node" << static_cast<const void *>(
-                             RI->getTopLevelRegion()->getBBNode(*BI)) << ";\n";
+            << "Node"
+            << static_cast<void *>(RI->getTopLevelRegion()->getBBNode(*BI))
+            << ";\n";
 
     O.indent(2 * depth) << "}\n";
   }
index a2664e2db310697a42cd6918d52c99af882172da..f0488a0f21867bcb91e8f19517035ac6e3267b84 100644 (file)
@@ -262,8 +262,8 @@ bool JSONImporter::runOnScop(Scop &scop) {
     for (ScopStmt::memacc_iterator MI = Stmt->memacc_begin(),
                                    ME = Stmt->memacc_end();
          MI != ME; ++MI) {
-      Json::Value accesses = jscop["statements"][statementIdx]["accesses"][
-          memoryAccessIdx]["relation"];
+      Json::Value accesses = jscop["statements"][statementIdx]["accesses"]
+                                  [memoryAccessIdx]["relation"];
       isl_map *newAccessMap =
           isl_map_read_from_str(S->getIslCtx(), accesses.asCString());
       isl_map *currentAccessMap = (*MI)->getAccessRelation();
index c9866eeff4467e89a5ba9b65374c83883842f256..6cec03f924ff36984ebba2d486a0188f802c63ad 100644 (file)
@@ -218,8 +218,7 @@ static bool ConvertToSInt(const APFloat &APF, int64_t &IntVal) {
   // See if we can convert this to an int64_t
   uint64_t UIntVal;
   if (APF.convertToInteger(&UIntVal, 64, true, APFloat::rmTowardZero,
-                           &isExact) !=
-          APFloat::opOK ||
+                           &isExact) != APFloat::opOK ||
       !isExact)
     return false;
   IntVal = UIntVal;