From 086a1493d6c69a88bdb792b21724c4906a48c327 Mon Sep 17 00:00:00 2001 From: nybblista <170842536+nybblista@users.noreply.github.com> Date: Fri, 14 Mar 2025 00:41:31 +0300 Subject: [PATCH] add JUMP_BACKWARD opcode macro to the Jumps section JUMP_BACKWARD opcode macro added to the Jumps section in interpreter.md file at InternalDocs. --- InternalDocs/interpreter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/interpreter.md b/InternalDocs/interpreter.md index 7195d9c6de575c..38e9f6fced6088 100644 --- a/InternalDocs/interpreter.md +++ b/InternalDocs/interpreter.md @@ -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