mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-23 04:33:24 +00:00
PPC_REENTRANT_JIT is only valid with JIT enabled
This commit is contained in:
parent
114f5ff6c7
commit
e1bbf0714b
@ -460,7 +460,7 @@ void powerpc_cpu::execute(uint32 entry)
|
||||
#endif
|
||||
execute_depth++;
|
||||
#if PPC_DECODE_CACHE || PPC_ENABLE_JIT
|
||||
if (execute_depth == 1 || PPC_REENTRANT_JIT) {
|
||||
if (execute_depth == 1 || (PPC_ENABLE_JIT && PPC_REENTRANT_JIT)) {
|
||||
#if PPC_ENABLE_JIT
|
||||
if (use_jit) {
|
||||
block_info *bi = block_cache.find(pc());
|
||||
|
Loading…
Reference in New Issue
Block a user