diff options
author | Alan Modra <amodra@gmail.com> | 2021-03-12 10:36:49 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-03-12 10:41:34 +1030 |
commit | 78c84bf926fc263a588c96c7cd313fb9a9988b4b (patch) | |
tree | 18bbb68fbd046a11ca2e8b2ebdf946b85d8fd24a /opcodes/i386-dis.c | |
parent | 68cb21837f09fd9c12fe4ced7b14f892be929c4f (diff) | |
download | gdb-78c84bf926fc263a588c96c7cd313fb9a9988b4b.zip gdb-78c84bf926fc263a588c96c7cd313fb9a9988b4b.tar.gz gdb-78c84bf926fc263a588c96c7cd313fb9a9988b4b.tar.bz2 |
Re: x86: correct decoding of nop/reserved space (0f18 ... 0x1f)
* i386-dis.c (print_insn <PREFIX_IGNORED>): Correct typo.
Diffstat (limited to 'opcodes/i386-dis.c')
-rw-r--r-- | opcodes/i386-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 2985e8d..4e3304d 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -9783,7 +9783,7 @@ print_insn (bfd_vma pc, disassemble_info *info) origins in all_prefixes. */ used_prefixes &= ~PREFIX_OPCODE; if (last_data_prefix >= 0) - all_prefixes[last_repz_prefix] = 0x66; + all_prefixes[last_data_prefix] = 0x66; if (last_repz_prefix >= 0) all_prefixes[last_repz_prefix] = 0xf3; if (last_repnz_prefix >= 0) |