diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-07 10:12:52 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-07 10:12:52 -0700 |
commit | 0526f453aa1286dd43b2196da367500650a0e424 (patch) | |
tree | 4a7d7969d64aeeeb1d27c0c1418bb57e94ba611c /src/arch | |
parent | 2daba26359f21ee42f0dbd09ab8f1971b5c1112e (diff) | |
download | gem5-0526f453aa1286dd43b2196da367500650a0e424.tar.xz |
X86: Use the right field when using legacy prefixes to distinguish instructions.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/isa/decoder/two_byte_opcodes.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/two_byte_opcodes.isa b/src/arch/x86/isa/decoder/two_byte_opcodes.isa index c344ee550..401e02965 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -1067,7 +1067,7 @@ } default: Inst::UD2(); } - 0x1E: decode OPCODE_OP_BOTTOM3 { + 0x1E: decode LEGACY_DECODEVAL { // no prefix 0x0: decode OPCODE_OP_BOTTOM3 { 0x1: psllw_Pq_Qq(); |