comment out JIT debug code

This commit is contained in:
RSDuck 2023-03-28 04:23:36 +02:00
parent b078ca802f
commit 5999fddccb
1 changed files with 1 additions and 1 deletions

View File

@ -55,8 +55,8 @@ static_assert(offsetof(ARM, StopExecution) == ARM_StopExecution_offset, "");
namespace ARMJIT
{
#define JIT_DEBUGPRINT(msg, ...)
#define JIT_DEBUGPRINT(msg, ...) Platform::Log(Platform::LogLevel::Debug, msg, ## __VA_ARGS__)
//#define JIT_DEBUGPRINT(msg, ...) printf(msg, ## __VA_ARGS__)
Compiler* JITCompiler;