Skip to content

Commit

Permalink
Remove obolete case- there aren't fdefns in immobile space
Browse files Browse the repository at this point in the history
  • Loading branch information
snuglas committed Jul 10, 2024
1 parent eb13772 commit 35bc399
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/code/gc.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,7 @@ statistics are appended to it."
(when (simple-fun-p object)
(setq addr (get-lisp-obj-address (fun-code-header object))))
(let ((sap (int-sap (logandc2 addr sb-vm:lowtag-mask))))
(logand (if (fdefn-p object) (sap-ref-8 sap 1) (sap-ref-8 sap 3))
#xF)))))))
(logand (sap-ref-8 sap 3) #xF)))))))

#+mark-region-gc
(defun generation-of (object)
Expand Down

0 comments on commit 35bc399

Please sign in to comment.