forked from OSchip/llvm-project
[ARM] Declare Op within an if statement (NFC)
This commit is contained in:
parent
52aa4e2107
commit
331c28f60d
|
@ -939,11 +939,10 @@ bool MVEGatherScatterLowering::optimiseOffsets(Value *Offsets, BasicBlock *BB,
|
|||
return false;
|
||||
|
||||
// The phi must be an induction variable
|
||||
Instruction *Op;
|
||||
int IncrementingBlock = -1;
|
||||
|
||||
for (int i = 0; i < 2; i++)
|
||||
if ((Op = dyn_cast<Instruction>(Phi->getIncomingValue(i))) != nullptr)
|
||||
if (auto *Op = dyn_cast<Instruction>(Phi->getIncomingValue(i)))
|
||||
if (Op->getOpcode() == Instruction::Add &&
|
||||
(Op->getOperand(0) == Phi || Op->getOperand(1) == Phi))
|
||||
IncrementingBlock = i;
|
||||
|
|
Loading…
Reference in New Issue