diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-06-08 16:07:31 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-06-08 16:07:31 +0000 |
commit | ce8f4c1f16962b087a13d9d928b09f44df04088d (patch) | |
tree | d4878fa3f1909bf58f099968acddc8657a1f5ef9 /src/arch/x86 | |
parent | 2f194cc6f7e132ded4cf20f9cb23dacee48f1665 (diff) | |
download | gem5-ce8f4c1f16962b087a13d9d928b09f44df04088d.tar.xz |
Fixed format arguments for XOR.
--HG--
extra : convert_revision : d64fe734fcdcc414ba9af9fc5f0f795429d5dad3
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/isa/decoder/one_byte_opcodes.isa | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/arch/x86/isa/decoder/one_byte_opcodes.isa b/src/arch/x86/isa/decoder/one_byte_opcodes.isa index 0ee9c53c6..8219d0ba8 100644 --- a/src/arch/x86/isa/decoder/one_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/one_byte_opcodes.isa @@ -122,12 +122,14 @@ 0x7: das(); } 0x06: decode OPCODE_OP_BOTTOM3 { - 0x4: Inst::XOR(ALIb); - 0x5: Inst::XOR(rAX,Iz); + 0x4: Inst::XOR(rAl,Ib); + 0x5: Inst::XOR(rAx,Iz); 0x6: M5InternalError::error( {{"Tried to execute the SS segment override prefix!"}}); 0x7: aaa(); - default: MultiInst::XOR(EbGb, EvGv, GbEb, GvEv); + default: MultiInst::XOR(OPCODE_OP_BOTTOM3, + [Eb,Gb], [Ev,Gv], + [Gb,Eb], [Gv,Ev]); } 0x07: decode OPCODE_OP_BOTTOM3 { 0x0: cmp_Eb_Gb(); |