mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 22:33:36 +08:00
Sparc64 BPr branch target fix (Blue Swirl)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2003 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3cb0853ad7
commit
13846e700f
@ -970,7 +970,7 @@ static void disas_sparc_insn(DisasContext * dc)
|
||||
case 0x3: /* V9 BPr */
|
||||
{
|
||||
target = GET_FIELD_SP(insn, 0, 13) |
|
||||
(GET_FIELD_SP(insn, 20, 21) >> 7);
|
||||
(GET_FIELD_SP(insn, 20, 21) << 14);
|
||||
target = sign_extend(target, 16);
|
||||
target <<= 2;
|
||||
rs1 = GET_FIELD(insn, 13, 17);
|
||||
|
Loading…
Reference in New Issue
Block a user