ScopInfo/IndependentBlocks: clang-format

llvm-svn: 187023
This commit is contained in:
Tobias Grosser 2013-07-24 06:10:30 +00:00
parent e88204c4ce
commit ff9bfdfa80
2 changed files with 10 additions and 8 deletions

View 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();
}
}

View File

@ -31,10 +31,10 @@
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) {