Fix a bug in the ARM disassembler for wide branch conditional instructions
[oota-llvm.git] / lib / Target / ARM / Disassembler / ARMDisassembler.cpp
index 80b2b235bed8efbbbcc2524e5ba76d916d82a3fd..1363b85ee5c80f3b5f796a92bcce15c99b5b96dd 100644 (file)
@@ -3016,7 +3016,7 @@ static DecodeStatus DecodeThumbBROperand(MCInst &Inst, unsigned Val,
 
 static DecodeStatus DecodeT2BROperand(MCInst &Inst, unsigned Val,
                                  uint64_t Address, const void *Decoder) {
-  if (!tryAddingSymbolicOperand(Address, Address + SignExtend32<22>(Val<<1) + 4,
+  if (!tryAddingSymbolicOperand(Address, Address + SignExtend32<22>(Val) + 4,
                                 true, 4, Inst, Decoder))
     Inst.addOperand(MCOperand::CreateImm(SignExtend32<21>(Val)));
   return MCDisassembler::Success;