mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 07:28:13 +00:00
mips: fix issue #39
This commit is contained in:
parent
22b549a4db
commit
cc5d28e112
1 changed files with 2 additions and 2 deletions
|
@ -19169,9 +19169,9 @@ gen_intermediate_code_internal(MIPSCPU *cpu, TranslationBlock *tb,
|
|||
int num_insns;
|
||||
int max_insns;
|
||||
int insn_bytes;
|
||||
int is_slot;
|
||||
int is_slot = 0;
|
||||
TCGContext *tcg_ctx = env->uc->tcg_ctx;
|
||||
TCGArg *save_opparam_ptr;
|
||||
TCGArg *save_opparam_ptr = NULL;
|
||||
|
||||
if (search_pc)
|
||||
qemu_log("search pc %d\n", search_pc);
|
||||
|
|
Loading…
Reference in a new issue