And missing #ifndef's in CMOV.

This commit is contained in:
OBattler
2023-08-08 21:02:49 +02:00
parent 480d663d19
commit 7e98ff301e

View File

@@ -769,6 +769,7 @@ opMOV_r_l_a32(uint32_t fetchdat)
return 0; return 0;
} }
#ifndef OPS_286_386
#define opCMOV(condition) \ #define opCMOV(condition) \
static int opCMOV##condition##_w_a16(uint32_t fetchdat) \ static int opCMOV##condition##_w_a16(uint32_t fetchdat) \
{ \ { \
@@ -865,3 +866,4 @@ opCMOV(NL)
opCMOV(LE) opCMOV(LE)
opCMOV(NLE) opCMOV(NLE)
// clang-format on // clang-format on
#endif