PPC_REENTRANT_JIT is only valid with JIT enabled

This commit is contained in:
gbeauche 2004-11-22 22:09:05 +00:00
parent 114f5ff6c7
commit e1bbf0714b

View File

@ -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());