mirror of
https://github.com/python/cpython.git
synced 2025-07-07 11:25:30 +00:00
gh-119786: add JUMP_BACKWARD
macro to the Jumps section (#131213)
add JUMP_BACKWARD opcode macro to the Jumps section JUMP_BACKWARD opcode macro added to the Jumps section in interpreter.md file at InternalDocs.
This commit is contained in:
parent
d07e9ebbe8
commit
23cda58348
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ already points to the next instruction.
|
|||
Thus, jump instructions can be implemented by manipulating `next_instr`:
|
||||
|
||||
- A jump forward (`JUMP_FORWARD`) sets `next_instr += oparg`.
|
||||
- A jump backward sets `next_instr -= oparg`.
|
||||
- A jump backward (`JUMP_BACKWARD`) sets `next_instr -= oparg`.
|
||||
|
||||
## Inline cache entries
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue