diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:22:37 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 18:22:37 -0700 |
commit | 69f0bf743c9ae62a6e3a39fde8724eecc01568de (patch) | |
tree | 6539df05bbaff253b7182f1009f9ae3ec746227c /src/arch/x86/isa/decoder | |
parent | 982b3ad1f01e4d8da81f3ec28045c787a1cc3fba (diff) | |
download | gem5-69f0bf743c9ae62a6e3a39fde8724eecc01568de.tar.xz |
X86: (Re)implement XORPS and XORPD.
Diffstat (limited to 'src/arch/x86/isa/decoder')
-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 3e1bc5cfb..5bfe69dc5 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -471,7 +471,7 @@ 0x4: andps_Vo_Wo(); 0x5: andnps_Vo_Wo(); 0x6: orps_Vo_Wo(); - 0x7: xorps_Vo_Wo(); + 0x7: Inst::XORPS(Vo,Wo); } // repe (0xF3) 0x4: decode OPCODE_OP_BOTTOM3 { |