Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion InternalDocs/jit.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ When invoked, the executor jumps to the `tier2_dispatch:` label in
executes the micro-ops. The body of this loop is a switch statement over
the uops IDs, resembling the one used in the adaptive interpreter.

The swtich implementing the uops is in [`Python/executor_cases.c.h`](../Python/executor_cases.c.h),
The switch implementing the uops is in [`Python/executor_cases.c.h`](../Python/executor_cases.c.h),
which is generated by the build script
[`Tools/cases_generator/tier2_generator.py`](../Tools/cases_generator/tier2_generator.py)
from the bytecode definitions in
Expand Down
Loading