Fix no JIT & no decode cache case to default to interpretive mode only.

This commit is contained in:
gbeauche 2003-12-25 23:33:15 +00:00
parent c48515b6d5
commit 561046449a

View File

@ -558,10 +558,12 @@ void powerpc_cpu::execute(uint32 entry)
break;
}
}
#endif
goto return_site;
#endif
goto do_interpret;
}
#endif
do_interpret:
for (;;) {
uint32 opcode = vm_read_memory_4(pc());
const instr_info_t *ii = decode(opcode);