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:
Nybblista 2025-03-16 23:04:39 +03:00 committed by GitHub
parent d07e9ebbe8
commit 23cda58348
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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