]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-137959: Fix `TIER1_TO_TIER2` macro name in JIT InternalDocs (GH-141496)
authorMikhail Efimov <efimov.mikhail@gmail.com>
Thu, 13 Nov 2025 14:44:40 +0000 (17:44 +0300)
committerGitHub <noreply@github.com>
Thu, 13 Nov 2025 14:44:40 +0000 (14:44 +0000)
JIT InternalDocs fix

InternalDocs/jit.md

index 095853807377a4519602f3214a98a9b615ae1b0c..1740b22b85f77b9c69bba26a05f075c5d848cc14 100644 (file)
@@ -53,7 +53,7 @@ and an instance of `_PyUOpExecutor_Type` is created to contain it.
 ## The JIT interpreter
 
 After a `JUMP_BACKWARD` instruction invokes the uop optimizer to create a uop
-executor, it transfers control to this executor via the `GOTO_TIER_TWO` macro.
+executor, it transfers control to this executor via the `TIER1_TO_TIER2` macro.
 
 CPython implements two executors. Here we describe the JIT interpreter,
 which is the simpler of them and is therefore useful for debugging and analyzing