CI(full),CI(release): Should use if instead of ifdef

This commit is contained in:
mio
2025-02-11 17:44:24 +08:00
parent 5981f10c5d
commit 791557e404
5 changed files with 20 additions and 20 deletions

View File

@@ -130,7 +130,7 @@ void helper_cmpxchg16b(CPUX86State *env, target_ulong a0)
if ((a0 & 0xf) != 0) {
raise_exception_ra(env, EXCP0D_GPF, ra);
} else {
#ifdef HAVE_CMPXCHG128
#if HAVE_CMPXCHG128 == 1
int eflags = cpu_cc_compute_all(env, CC_OP);
Int128 cmpv = int128_make128(env->regs[R_EAX], env->regs[R_EDX]);