mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
disas/i386: Fix disassembly of two-byte vex prefixes
Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
b32dc3370a
commit
980edf4b69
1 changed files with 1 additions and 0 deletions
|
@ -3559,6 +3559,7 @@ ckvexprefix (void)
|
|||
} else {
|
||||
/* Two byte VEX prefix. */
|
||||
newrex |= (vex2 & 0x80 ? 0 : REX_R);
|
||||
newpfx |= PREFIX_VEX_0F;
|
||||
codep += 2;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue