From 7e98ff301e43633349bae76c6e287a50a997ff53 Mon Sep 17 00:00:00 2001 From: OBattler Date: Tue, 8 Aug 2023 21:02:49 +0200 Subject: [PATCH] And missing #ifndef's in CMOV. --- src/cpu/x86_ops_mov.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpu/x86_ops_mov.h b/src/cpu/x86_ops_mov.h index 063a33516..84239be07 100644 --- a/src/cpu/x86_ops_mov.h +++ b/src/cpu/x86_ops_mov.h @@ -769,6 +769,7 @@ opMOV_r_l_a32(uint32_t fetchdat) return 0; } +#ifndef OPS_286_386 #define opCMOV(condition) \ static int opCMOV##condition##_w_a16(uint32_t fetchdat) \ { \ @@ -865,3 +866,4 @@ opCMOV(NL) opCMOV(LE) opCMOV(NLE) // clang-format on +#endif