Skip to content

Commit

Permalink
Fix bytecode walker for long instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bike committed Sep 25, 2023
1 parent fe0b8ed commit f48af23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lisp/kernel/lsp/bytecode-introspect.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
for ,op = (cmpref::decode-instr (aref ,bsym ,ip))
for ,mnemonic = (intern (string-upcase (first ,op)) "KEYWORD")
if (eql ,mnemonic :long)
do (setf ,longp t)
do (setf ,longp t ,ip (1+ ,ip))
else
do (let ((,opip ,ip))
(incf ,ip)
Expand Down

0 comments on commit f48af23

Please sign in to comment.