mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-04 08:16:49 +00:00
ScopInfo/IndependentBlocks: clang-format
llvm-svn: 187023
This commit is contained in:
parent
e88204c4ce
commit
ff9bfdfa80
@ -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();
|
||||
}
|
||||
}
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user