summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/drcuml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/drcuml.cpp')
-rw-r--r--src/devices/cpu/drcuml.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/devices/cpu/drcuml.cpp b/src/devices/cpu/drcuml.cpp
index 41b9c6466a9..0ae6f2c2868 100644
--- a/src/devices/cpu/drcuml.cpp
+++ b/src/devices/cpu/drcuml.cpp
@@ -37,7 +37,6 @@
#include "drcbearm64.h"
#include "drcbec.h"
#include "drcbex64.h"
-#include "drcbex86.h"
#include "emuopts.h"
@@ -61,17 +60,15 @@
//**************************************************************************
// determine the type of the native DRC, falling back to C
-#ifndef NATIVE_DRC
+#if !defined(NATIVE_DRC)
#if !defined(MAME_NOASM) && (defined(__x86_64__) || defined(_M_X64))
#define NATIVE_DRC drcbe_x64
-#elif !defined(MAME_NOASM) && (defined(__i386__) || defined(_M_IX86))
-#define NATIVE_DRC drcbe_x86
#elif !defined(MAME_NOASM) && (defined(__aarch64__) || defined(_M_ARM64))
#define NATIVE_DRC drcbe_arm64
#else
#define NATIVE_DRC drcbe_c
#endif
-#endif
+#endif // !defined(NATIVE_DRC)
#define MAKE_DRCBE_IMPL(name) make_##name
#define MAKE_DRCBE(name) MAKE_DRCBE_IMPL(name)