From 357467c97b49acefb9b2d40b74bfd9db4c3c75aa Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Wed, 18 Jan 2006 23:45:31 +0000 Subject: [PATCH] is necessary because it contains the definitions of DYNGEN_FAST_DISPATCH for the direct_chaining_possible() test... [otherwise, it was a performance regression] --- SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-translate.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-translate.cpp b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-translate.cpp index 1f397f15..97622dc1 100644 --- a/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-translate.cpp +++ b/SheepShaver/src/kpx_cpu/src/cpu/ppc/ppc-translate.cpp @@ -23,6 +23,10 @@ #include "cpu/ppc/ppc-instructions.hpp" #include "cpu/ppc/ppc-operands.hpp" +#if PPC_ENABLE_JIT +#include "cpu/jit/dyngen-exec.h" +#endif + #ifdef SHEEPSHAVER #include "cpu_emulation.h" #endif