diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-07-18 17:48:16 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-07-18 17:48:16 -0700 |
commit | f6d326d6fcd505068ffff4014b19d4fa27f2e5be (patch) | |
tree | 00ac52287a0a135dad246d4b24ca26a386d560f8 | |
parent | dbf361128a1e9940ada0af32d9d0d728d08b8943 (diff) | |
download | gem5-f6d326d6fcd505068ffff4014b19d4fa27f2e5be.tar.xz |
Hook near returns into the decoder.
--HG--
extra : convert_revision : b38d4417552991e44f5d1de1f35d5d1ad8f32340
-rw-r--r-- | src/arch/x86/isa/decoder/one_byte_opcodes.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index 82e50e745..12bebd47b 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -398,7 +398,7 @@ 0x0: group2_Eb_Ib(); 0x1: group2_Ev_Ib(); 0x2: ret_near_Iw(); - 0x3: ret_near(); + 0x3: Inst::RET(); 0x4: decode MODE_SUBMODE { 0x0: This_should_be_an_illegal_instruction(); default: les_Gz_Mp(); |