X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=target-sh4%2Ftranslate.c;h=2fbe6685b056aff6050fcfe575a951a027b52f60;hb=38e308103d40d859e2da74166fd4a1a80d78106d;hp=292c9e970794c35f21dd44aacfbe9a4a2718e1f4;hpb=d9916c23d3024ce2ae7f6300a7b4e62780e4632b;p=qemu.git diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 292c9e970..2fbe6685b 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -1846,9 +1846,10 @@ static void decode_opc(DisasContext * ctx) } static inline void -gen_intermediate_code_internal(CPUSH4State * env, TranslationBlock * tb, - int search_pc) +gen_intermediate_code_internal(SuperHCPU *cpu, TranslationBlock *tb, + bool search_pc) { + CPUSH4State *env = &cpu->env; DisasContext ctx; target_ulong pc_start; static uint16_t *gen_opc_end; @@ -1969,12 +1970,12 @@ gen_intermediate_code_internal(CPUSH4State * env, TranslationBlock * tb, void gen_intermediate_code(CPUSH4State * env, struct TranslationBlock *tb) { - gen_intermediate_code_internal(env, tb, 0); + gen_intermediate_code_internal(sh_env_get_cpu(env), tb, false); } void gen_intermediate_code_pc(CPUSH4State * env, struct TranslationBlock *tb) { - gen_intermediate_code_internal(env, tb, 1); + gen_intermediate_code_internal(sh_env_get_cpu(env), tb, true); } void restore_state_to_opc(CPUSH4State *env, TranslationBlock *tb, int pc_pos)