diff options
author | Mark Shannon <mark@hotpy.org> | 2024-10-07 11:46:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-07 11:46:33 +0100 |
commit | f55273b3b7124dc570911724107c2440f37905fc (patch) | |
tree | ecb61418b1c37cf9825bb0a742097f8a51db761a /Python/bytecodes.c | |
parent | 31516c98dd7097047ba10da8dcf728c3d580f3d6 (diff) | |
download | cpython-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.c | 4 |
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]); } |