]> git.proxmox.com Git - qemu.git/commitdiff
bound instruction fix
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 15 Aug 2004 14:51:07 +0000 (14:51 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 15 Aug 2004 14:51:07 +0000 (14:51 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1046 c046a42c-6fe2-441c-8c8c-71466251a162

target-i386/translate.c

index 13840bbf92fa6bac39ecc188e437bfd79c4ebb8b..111b88914e38f9c2a347c58a24cfc69f1d6b8d08 100644 (file)
@@ -3844,7 +3844,7 @@ static uint8_t *disas_insn(DisasContext *s, uint8_t *pc_start)
         mod = (modrm >> 6) & 3;
         if (mod == 3)
             goto illegal_op;
-        gen_op_mov_reg_T0[ot][reg]();
+        gen_op_mov_TN_reg[ot][0][reg]();
         gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
         if (ot == OT_WORD)
             gen_op_boundw(pc_start - s->cs_base);