]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
disable tracing on FT
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Fri, 24 Oct 2025 13:36:38 +0000 (14:36 +0100)
committerKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Fri, 24 Oct 2025 13:36:38 +0000 (14:36 +0100)
Python/bytecodes.c
Python/generated_cases.c.h

index e872dabda874169361efbea9a9d394ac82db97ed..31a433721fe4164b7b8e1c0da289ff9c88c6308b 100644 (file)
@@ -2955,7 +2955,7 @@ dummy_func(
         };
 
         tier1 op(_SPECIALIZE_JUMP_BACKWARD, (--)) {
-        #if ENABLE_SPECIALIZATION_FT
+        #if ENABLE_SPECIALIZATION
             if (this_instr->op.code == JUMP_BACKWARD) {
                 uint8_t desired = tstate->interp->jit ? JUMP_BACKWARD_JIT : JUMP_BACKWARD_NO_JIT;
                 FT_ATOMIC_STORE_UINT8_RELAXED(this_instr->op.code, desired);
index 7b759811b3928d2ae4dde47ff45559c7ea98f782..8169a36a9b956245eeaee64044f8fbf46988b26c 100644 (file)
             /* Skip 1 cache entry */
             // _SPECIALIZE_JUMP_BACKWARD
             {
-                #if ENABLE_SPECIALIZATION_FT
+                #if ENABLE_SPECIALIZATION
                 if (this_instr->op.code == JUMP_BACKWARD) {
                     uint8_t desired = tstate->interp->jit ? JUMP_BACKWARD_JIT : JUMP_BACKWARD_NO_JIT;
                     FT_ATOMIC_STORE_UINT8_RELAXED(this_instr->op.code, desired);