aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-10-07 11:46:33 +0100
committerGitHub <noreply@github.com>2024-10-07 11:46:33 +0100
commitf55273b3b7124dc570911724107c2440f37905fc (patch)
treeecb61418b1c37cf9825bb0a742097f8a51db761a /Python/bytecodes.c
parent31516c98dd7097047ba10da8dcf728c3d580f3d6 (diff)
downloadcpython-f55273b3b7124dc570911724107c2440f37905fc.tar.gz
cpython-f55273b3b7124dc570911724107c2440f37905fc.zip
GH-116968: Remove branch from advance_backoff_counter (GH-124469)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index c712c772201..f251b79e00e 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -4705,7 +4705,7 @@ dummy_func(
printf("SIDE EXIT: [UOp ");
_PyUOpPrint(&next_uop[-1]);
printf(", exit %u, temp %d, target %d -> %s]\n",
- exit - current_executor->exits, exit->temperature.as_counter,
+ exit - current_executor->exits, exit->temperature.value_and_backoff,
(int)(target - _PyCode_CODE(code)),
_PyOpcode_OpName[target->op.code]);
}
@@ -4794,7 +4794,7 @@ dummy_func(
printf("DYNAMIC EXIT: [UOp ");
_PyUOpPrint(&next_uop[-1]);
printf(", exit %u, temp %d, target %d -> %s]\n",
- exit - current_executor->exits, exit->temperature.as_counter,
+ exit - current_executor->exits, exit->temperature.value_and_backoff,
(int)(target - _PyCode_CODE(_PyFrame_GetCode(frame))),
_PyOpcode_OpName[target->op.code]);
}