mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 22:26:44 +00:00
target/arm: Fix bad patch merge in arm_tr_init_disas_context
This commit is contained in:
parent
5c0cff59f2
commit
76d33b34e1
|
@ -12070,8 +12070,8 @@ static void arm_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
|
||||||
dc->base.max_insns = MIN(dc->base.max_insns, bound);
|
dc->base.max_insns = MIN(dc->base.max_insns, bound);
|
||||||
}
|
}
|
||||||
|
|
||||||
dc->V0 = tcg_temp_new_i32(tcg_ctx);
|
dc->V0 = tcg_temp_new_i64(tcg_ctx);
|
||||||
dc->V1 = tcg_temp_new_i32(tcg_ctx);
|
dc->V1 = tcg_temp_new_i64(tcg_ctx);
|
||||||
/* FIXME: dc->M0 can probably be the same as dc->V0. */
|
/* FIXME: dc->M0 can probably be the same as dc->V0. */
|
||||||
dc->M0 = tcg_temp_new_i64(tcg_ctx);
|
dc->M0 = tcg_temp_new_i64(tcg_ctx);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue