From: Alex Rønne Petersen Date: Sat, 23 Nov 2013 17:26:55 +0000 (+0100) Subject: Fix the encoding of x86_imul_reg_mem_imm. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=926638469eee238ff477720190c7f8c0377af4d6;p=mono.git Fix the encoding of x86_imul_reg_mem_imm. --- diff --git a/mono/arch/x86/x86-codegen.h b/mono/arch/x86/x86-codegen.h index ced466eaf14..ad6282f6409 100644 --- a/mono/arch/x86/x86-codegen.h +++ b/mono/arch/x86/x86-codegen.h @@ -1039,7 +1039,7 @@ typedef union { } else { \ x86_codegen_pre(&(inst), 6); \ *(inst)++ = (unsigned char)0x69; \ - x86_reg_emit ((inst), (reg), (mem)); \ + x86_mem_emit ((inst), (reg), (mem)); \ x86_imm_emit32 ((inst), (imm)); \ } \ } while (0)