diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 20:25:14 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-08-17 20:25:14 -0700 |
commit | 56d87cdc088dced1084aba3ccb23e1ed143a0346 (patch) | |
tree | e5b3251a06fd34ced5d076701d4469d1ca915e57 /src/arch/x86/isa/decoder | |
parent | 317a9ac6d149b724faa443f532583080567317f8 (diff) | |
download | gem5-56d87cdc088dced1084aba3ccb23e1ed143a0346.tar.xz |
X86: Implement MOVQ2DQ.
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 ba150232e..f88ea89d4 100644 --- a/src/arch/x86/isa/decoder/two_byte_opcodes.isa +++ b/src/arch/x86/isa/decoder/two_byte_opcodes.isa @@ -951,7 +951,7 @@ } // repe (0xF3) 0x4: decode OPCODE_OP_BOTTOM3 { - 0x6: WarnUnimpl::movq2dq_Vo_PRq(); + 0x6: MOVQ2DQ(Vo,PRq); default: UD2(); } // operand size (0x66) |