x86/compiler1: fix unused variable warning

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar
2026-06-01 23:35:27 -04:00
parent 64d0788f1d
commit 31dfd97a7d
+3
View File
@@ -561,6 +561,9 @@ translate_jump(bal_tier1_compiler_t *BAL_RESTRICT compiler,
BAL_LOG_DEBUG(
&compiler->logger, "Translated JUMP to 0x%016llX", (unsigned long long)*target_pc);
// WARNING: Prevents unsued local variable compiler warning.
(void)compiler;
}
void