aboutsummaryrefslogtreecommitdiff
path: root/src/ARMJIT.cpp
diff options
context:
space:
mode:
authorRSDuck <RSDuck@users.noreply.github.com>2023-03-28 04:23:36 +0200
committerRSDuck <RSDuck@users.noreply.github.com>2023-03-28 04:23:36 +0200
commit5999fddccb34a754df124d8e924c3bba40aa2dfe (patch)
treec1d2490d278b601be898a97ab9e0acceadf63c69 /src/ARMJIT.cpp
parentb078ca802f8f38e5602c8ce89d9b340ff0a6aacd (diff)
comment out JIT debug code
Diffstat (limited to 'src/ARMJIT.cpp')
-rw-r--r--src/ARMJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ARMJIT.cpp b/src/ARMJIT.cpp
index 77d8602..45400d6 100644
--- a/src/ARMJIT.cpp
+++ b/src/ARMJIT.cpp
@@ -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;