From 08c96734bf4da3b5267ea52b13878eeb6f6c2e21 Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Fri, 25 Dec 2015 23:41:17 +0100 Subject: [PATCH] Disable get_word_020_prefetchf() when not compiling with JIT since this function is only used from the JIT code. --- newcpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newcpu.cpp b/newcpu.cpp index 6aeae012..40058991 100644 --- a/newcpu.cpp +++ b/newcpu.cpp @@ -4119,7 +4119,7 @@ cont: #endif -#ifdef CPUEMU_20 +#if defined(CPUEMU_20) && defined(JIT) // emulate simple prefetch static uae_u16 get_word_020_prefetchf (uae_u32 pc) { -- 2.47.3