mirror of https://github.com/xemu-project/xemu.git
cris: Use tcg_gen_movi_tl.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
7a9773563c
commit
46e246c911
|
@ -1381,7 +1381,7 @@ static unsigned int dec_moveq(DisasContext *dc)
|
||||||
imm = sign_extend(dc->op1, 5);
|
imm = sign_extend(dc->op1, 5);
|
||||||
LOG_DIS("moveq %d, $r%u\n", imm, dc->op2);
|
LOG_DIS("moveq %d, $r%u\n", imm, dc->op2);
|
||||||
|
|
||||||
tcg_gen_mov_tl(cpu_R[dc->op2], tcg_const_tl(imm));
|
tcg_gen_movi_tl(cpu_R[dc->op2], imm);
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
static unsigned int dec_subq(DisasContext *dc)
|
static unsigned int dec_subq(DisasContext *dc)
|
||||||
|
@ -2723,7 +2723,7 @@ static unsigned int dec_lapc_im(DisasContext *dc)
|
||||||
|
|
||||||
pc = dc->pc;
|
pc = dc->pc;
|
||||||
pc += imm;
|
pc += imm;
|
||||||
t_gen_mov_reg_TN(rd, tcg_const_tl(pc));
|
tcg_gen_movi_tl(cpu_R[rd], pc);
|
||||||
return 6;
|
return 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue