Skip to content

Commit 89aa532

Browse files
committed
bytecode FASLs: fix introspection of hash table insts
1 parent 2711962 commit 89aa532

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lisp/kernel/cmp/cmpltv.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@
570570
(make-array 74 sind rank . dims)
571571
(setf-row-major-aref 75 arrayind rmindex valueind)
572572
(make-hash-table 76 sind test count)
573-
((setf gethash) 77 htind keyind valueind)
573+
(setf-gethash 77 htind keyind valueind)
574574
(make-sb64 78 sind sb64)
575575
(find-package 79 sind nameind)
576576
(make-bignum 80 sind size . words) ; size is signed
@@ -852,7 +852,7 @@
852852
(write-b16 count stream)))
853853

854854
(defmethod encode ((inst setf-gethash) stream)
855-
(write-mnemonic '(setf gethash) stream)
855+
(write-mnemonic 'setf-gethash stream)
856856
(write-index (setf-gethash-hash-table inst) stream)
857857
(write-index (setf-gethash-key inst) stream)
858858
(write-index (setf-gethash-value inst) stream))

0 commit comments

Comments
 (0)