target/cris: Drop addr from dec10_ind_move_m_pr
This variable is not used, only allocated and freed. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
dc96408d82
commit
7932f23260
@ -800,12 +800,11 @@ static unsigned int dec10_ind_move_r_m(DisasContext *dc, unsigned int size)
|
||||
static unsigned int dec10_ind_move_m_pr(CPUCRISState *env, DisasContext *dc)
|
||||
{
|
||||
unsigned int insn_len = 2, rd = dc->dst;
|
||||
TCGv t, addr;
|
||||
TCGv t;
|
||||
|
||||
LOG_DIS("move.%d $p%d, [$r%d]\n", dc->size, dc->dst, dc->src);
|
||||
cris_lock_irq(dc);
|
||||
|
||||
addr = tcg_temp_new();
|
||||
t = tcg_temp_new();
|
||||
insn_len += dec10_prep_move_m(env, dc, 0, 4, t);
|
||||
if (rd == 15) {
|
||||
@ -816,7 +815,6 @@ static unsigned int dec10_ind_move_m_pr(CPUCRISState *env, DisasContext *dc)
|
||||
tcg_gen_mov_tl(cpu_PR[rd], t);
|
||||
dc->cpustate_changed = 1;
|
||||
}
|
||||
tcg_temp_free(addr);
|
||||
tcg_temp_free(t);
|
||||
return insn_len;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user