From e21fbc26e80b1be0b15ab76c6034e1dec8d2307a Mon Sep 17 00:00:00 2001 From: Alexey Prokhin Date: Fri, 25 Feb 2011 22:29:34 +0300 Subject: [PATCH] Fix imul and mul asm opcodes on X86_64 --- gen/asm-x86-64.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen/asm-x86-64.h b/gen/asm-x86-64.h index bcb32485..cead2433 100644 --- a/gen/asm-x86-64.h +++ b/gen/asm-x86-64.h @@ -891,7 +891,7 @@ namespace AsmParserx8664 { "hsubpd", Op_DstSrcSSE }, { "hsubps", Op_DstSrcSSE }, { "idiv", Op_Src_DXAXF }, - { "imul", Op_DstSrcNT }, + { "imul", Op_imul }, { "in", Op_in }, { "inc", Op_UpdF }, { "ins", Op_ins }, @@ -1021,7 +1021,7 @@ namespace AsmParserx8664 { "movups",Op_DstSrcSSE }, { "movzbl", Op_DstSrcNT }, { "movzx", Op_movzx }, - { "mul", Op_DstSrcNT }, + { "mul", Op_mul }, { "mulpd", Op_DstSrcSSE }, { "mulps", Op_DstSrcSSE }, { "mulsd", Op_DstSrcSSE },