From c5208af2a67c5856a96688246220ba77f3a06334 Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 13 Apr 2022 02:10:13 +0200 Subject: [PATCH] Fixed some compile-breaking mistakes in x86_ops_bitscan.h. --- src/cpu/x86_ops_bitscan.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpu/x86_ops_bitscan.h b/src/cpu/x86_ops_bitscan.h index 5b94e96e2..7e906a2a0 100644 --- a/src/cpu/x86_ops_bitscan.h +++ b/src/cpu/x86_ops_bitscan.h @@ -59,7 +59,7 @@ static int opBSF_w_a16(uint32_t fetchdat) #ifndef IS_DYNAREC instr_cycles += ((is486) ? 6 : 10); PREFETCH_RUN(instr_cycles, 2, rmdat, (cpu_mod == 3) ? 0:1,0,0,0, 0); -#enif +#endif return 0; } static int opBSF_w_a32(uint32_t fetchdat) @@ -173,7 +173,7 @@ static int opBSR_l_a16(uint32_t fetchdat) uint32_t temp; #ifndef IS_DYNAREC int instr_cycles = 0; -#enif +#endif fetch_ea_16(fetchdat); if (cpu_mod != 3) @@ -207,6 +207,6 @@ static int opBSR_l_a32(uint32_t fetchdat) #ifndef IS_DYNAREC instr_cycles += ((is486) ? 6 : 10); PREFETCH_RUN(instr_cycles, 2, rmdat, 0,(cpu_mod == 3) ? 0:1,0,0, 1); -#enif +#endif return 0; }