mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
Tweak to the fix in r156212, as with the change in removing the shift the
SignExtend32<22>(Val<<1) also needs to change to SignExtend32<21>(Val) . git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156213 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ce734d5ffe
commit
3610a15c35
@ -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) + 4,
|
||||
if (!tryAddingSymbolicOperand(Address, Address + SignExtend32<21>(Val) + 4,
|
||||
true, 4, Inst, Decoder))
|
||||
Inst.addOperand(MCOperand::CreateImm(SignExtend32<21>(Val)));
|
||||
return MCDisassembler::Success;
|
||||
|
Loading…
Reference in New Issue
Block a user