diff --git a/src/cpu/core_dynrec.cpp b/src/cpu/core_dynrec.cpp index 22b9cff1..e0e32be6 100644 --- a/src/cpu/core_dynrec.cpp +++ b/src/cpu/core_dynrec.cpp @@ -138,7 +138,6 @@ static struct { #define MIPSEL 0x03 #define ARMV4LE 0x04 #define ARMV7LE 0x05 -#define POWERPC 0x04 #define ARMV8LE 0x07 #if C_TARGETCPU == X86_64 @@ -149,8 +148,6 @@ static struct { #include "core_dynrec/risc_mipsel32.h" #elif (C_TARGETCPU == ARMV4LE) || (C_TARGETCPU == ARMV7LE) #include "core_dynrec/risc_armv4le.h" -#elif C_TARGETCPU == POWERPC -#include "core_dynrec/risc_ppc.h" #elif C_TARGETCPU == ARMV8LE #include "core_dynrec/risc_armv8le.h" #endif