From 86fd6238bd5ac691af19a0385b199946756b807b Mon Sep 17 00:00:00 2001 From: mtabachenko Date: Fri, 19 Apr 2013 16:28:48 +0000 Subject: [PATCH] JIT: - suppress block size debug info when use interpreter; --- desmume/src/arm_jit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/arm_jit.cpp b/desmume/src/arm_jit.cpp index 2d66c57a8..b204d08a0 100644 --- a/desmume/src/arm_jit.cpp +++ b/desmume/src/arm_jit.cpp @@ -4233,10 +4233,10 @@ void arm_jit_reset(bool enable) scratchptr = scratchpad; #endif printf("CPU mode: %s\n", enable?"JIT":"Interpreter"); - printf("JIT max block size %d instruction(s)\n", CommonSettings.jit_max_block_size); if (enable) { + printf("JIT: max block size %d instruction(s)\n", CommonSettings.jit_max_block_size); #ifdef MAPPED_JIT_FUNCS //these pointers are allocated by asmjit and need freeing