Skip to content

Commit

Permalink
Fix emitting new bytecodes
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Feb 8, 2023
1 parent c5176b5 commit 2e5e16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/som/compiler/bc/bytecode_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def emit_push_argument(mgenc, idx, ctx):


def emit_nil_local(mgenc, idx):
emit2(mgenc, BC.nil_local, idx)
emit2(mgenc, BC.nil_local, idx, 0)


def emit_return_self(mgenc):
Expand Down

0 comments on commit 2e5e16d

Please sign in to comment.