From 561046449ab8e8987b5cb6c60efb6ad61f2e0fef Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Thu, 25 Dec 2003 23:33:15 +0000 Subject: [PATCH] Fix no JIT & no decode cache case to default to interpretive mode only. --- SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.cpp b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.cpp index d1024a0b..80d13e1b 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.cpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-cpu.cpp @@ -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);