[ARM] Declare Op within an if statement (NFC)
authorKazu Hirata <kazu@google.com>
Thu, 31 Dec 2020 01:45:36 +0000 (17:45 -0800)
committerKazu Hirata <kazu@google.com>
Thu, 31 Dec 2020 01:45:36 +0000 (17:45 -0800)
llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp

index f36b341..b33e98e 100644 (file)
@@ -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;