Skip to content

Commit

Permalink
For unary sends, don’t need to updated global bytecode index
Browse files Browse the repository at this point in the history
Because there’s nothing that will change it anymore.
Because of inlining while loops.

Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Aug 11, 2024
1 parent 83f8f17 commit 0d94d1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/interpreter/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@ void Interpreter::doUnarySend(long bytecodeIndex) {
}
#endif
invokable->Invoke1(GetFrame());
bytecodeIndexGlobal = GetFrame()->GetBytecodeIndex();
} else {
triggerDoesNotUnderstand(signature);
}
Expand Down

0 comments on commit 0d94d1a

Please sign in to comment.