Skip to content

Commit 23cda58

Browse files
authored
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.
1 parent d07e9eb commit 23cda58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InternalDocs/interpreter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ already points to the next instruction.
112112
Thus, jump instructions can be implemented by manipulating `next_instr`:
113113

114114
- A jump forward (`JUMP_FORWARD`) sets `next_instr += oparg`.
115-
- A jump backward sets `next_instr -= oparg`.
115+
- A jump backward (`JUMP_BACKWARD`) sets `next_instr -= oparg`.
116116

117117
## Inline cache entries
118118

0 commit comments

Comments
 (0)