about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/debug.h2
-rw-r--r--src/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/debug.h b/src/include/debug.h
index d5e4bb91..948b29e4 100644
--- a/src/include/debug.h
+++ b/src/include/debug.h
@@ -9,6 +9,7 @@ extern int box64_dynarec_log;
 extern int box64_dynarec;
 extern uintptr_t box64_pagesize;
 extern uintptr_t box64_load_addr;
+extern int box64_dynarec_test;
 #ifdef DYNAREC
 extern int box64_dynarec_dump;
 extern int box64_dynarec_trace;
@@ -28,7 +29,6 @@ extern int box64_dynarec_tbb;
 extern int box64_dynarec_hotpage;
 extern int box64_dynarec_fastpage;
 extern int box64_dynarec_wait;
-extern int box64_dynarec_test;
 extern int box64_dynarec_missing;
 extern int box64_dynarec_aligned_atomics;
 #ifdef ARM64
diff --git a/src/main.c b/src/main.c
index 06de88a7..383df52e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -48,6 +48,7 @@ uintptr_t box64_load_addr = 0;
 int box64_nosandbox = 0;
 int box64_inprocessgpu = 0;
 int box64_malloc_hack = 0;
+int box64_dynarec_test = 0;
 #ifdef DYNAREC
 int box64_dynarec = 1;
 int box64_dynarec_dump = 0;
@@ -66,7 +67,6 @@ int box64_dynarec_bleeding_edge = 1;
 int box64_dynarec_jvm = 1;
 int box64_dynarec_tbb = 1;
 int box64_dynarec_wait = 1;
-int box64_dynarec_test = 0;
 int box64_dynarec_missing = 0;
 int box64_dynarec_aligned_atomics = 0;
 uintptr_t box64_nodynarec_start = 0;