Delete an extra "Imm5 = ", caught by GCC's -Wsequence-point but not by Clang
authorMatt Beaumont-Gay <matthewbg@google.com>
Thu, 16 Dec 2010 01:34:26 +0000 (01:34 +0000)
committerMatt Beaumont-Gay <matthewbg@google.com>
Thu, 16 Dec 2010 01:34:26 +0000 (01:34 +0000)
(see PR4579).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121939 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMMCCodeEmitter.cpp

index 2f210c3ad2d75975077b184d1bd6444a27c67d15..ed7c59bbca52a9b2d943afd91e35f672f9228b26 100644 (file)
@@ -823,7 +823,7 @@ getAddrModeISOpValue(const MCInst &MI, unsigned OpIdx,
   const MCOperand &MO = MI.getOperand(OpIdx);
   const MCOperand &MO1 = MI.getOperand(OpIdx + 1);
   unsigned Rn = getARMRegisterNumbering(MO.getReg());
-  unsigned Imm5 = Imm5 = MO1.getImm();
+  unsigned Imm5 = MO1.getImm();
   return ((Imm5 & 0x1f) << 3) | Rn;
 }