ScopInfo/IndependentBlocks: clang-format
authorTobias Grosser <tobias@grosser.es>
Wed, 24 Jul 2013 06:10:30 +0000 (06:10 +0000)
committerTobias Grosser <tobias@grosser.es>
Wed, 24 Jul 2013 06:10:30 +0000 (06:10 +0000)
llvm-svn: 187023

polly/lib/Analysis/ScopInfo.cpp
polly/lib/IndependentBlocks.cpp

index d2c8b0a..aa72f3e 100644 (file)
@@ -486,8 +486,8 @@ void ScopStmt::buildAccesses(TempScop &tempScop, const Region &CurRegion) {
                                       E = AccFuncs->end();
        I != E; ++I) {
     MemAccs.push_back(new MemoryAccess(I->first, I->second, this));
-    assert(!InstructionToAccess.count(I->second)
-           && "Unexpected 1-to-N mapping on instruction to access map!");
+    assert(!InstructionToAccess.count(I->second) &&
+           "Unexpected 1-to-N mapping on instruction to access map!");
     InstructionToAccess[I->second] = MemAccs.back();
   }
 }
index d7864e5..f97a334 100644 (file)
 using namespace polly;
 using namespace llvm;
 
-static cl::opt<bool>
-DisableIntraScopScalarToArray("disable-polly-intra-scop-scalar-to-array",
-  cl::desc("Do not rewrite scalar to array to generate independent blocks"),
-  cl::Hidden, cl::init(false), cl::cat(PollyCategory));
+static cl::opt<bool> DisableIntraScopScalarToArray(
+    "disable-polly-intra-scop-scalar-to-array",
+    cl::desc("Do not rewrite scalar to array to generate independent blocks"),
+    cl::Hidden, cl::init(false), cl::cat(PollyCategory));
 
 namespace {
 struct IndependentBlocks : public FunctionPass {
@@ -385,7 +385,8 @@ bool IndependentBlocks::translateScalarToArray(Instruction *Inst,
       if (isEscapeUse(U, R))
         LoadOutside.push_back(U);
 
-      if (DisableIntraScopScalarToArray) continue;
+      if (DisableIntraScopScalarToArray)
+        continue;
 
       if (canSynthesize(U, LI, SE, R))
         continue;
@@ -473,7 +474,8 @@ bool IndependentBlocks::isIndependentBlock(const Region *R,
       }
     }
 
-    if (DisableIntraScopScalarToArray) continue;
+    if (DisableIntraScopScalarToArray)
+      continue;
 
     for (Instruction::op_iterator OI = Inst->op_begin(), OE = Inst->op_end();
          OI != OE; ++OI) {