Commit cabf23c380ed0e46172f9503017bb636554276a9

Authored by bellard
1 parent e82d8ade

bound instruction fix


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1046 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
target-i386/translate.c
@@ -3844,7 +3844,7 @@ static uint8_t *disas_insn(DisasContext *s, uint8_t *pc_start) @@ -3844,7 +3844,7 @@ static uint8_t *disas_insn(DisasContext *s, uint8_t *pc_start)
3844 mod = (modrm >> 6) & 3; 3844 mod = (modrm >> 6) & 3;
3845 if (mod == 3) 3845 if (mod == 3)
3846 goto illegal_op; 3846 goto illegal_op;
3847 - gen_op_mov_reg_T0[ot][reg](); 3847 + gen_op_mov_TN_reg[ot][0][reg]();
3848 gen_lea_modrm(s, modrm, &reg_addr, &offset_addr); 3848 gen_lea_modrm(s, modrm, &reg_addr, &offset_addr);
3849 if (ot == OT_WORD) 3849 if (ot == OT_WORD)
3850 gen_op_boundw(pc_start - s->cs_base); 3850 gen_op_boundw(pc_start - s->cs_base);