Skip to content
Snippets Groups Projects
Commit 1c8628a1 authored by wlott's avatar wlott
Browse files

Added support for finding :fdefinition entries in the constants pool.

parent dd632b84
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.11 1992/02/14 23:50:14 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.12 1992/04/15 01:29:55 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -166,7 +166,10 @@ ...@@ -166,7 +166,10 @@
(ecase (car const) (ecase (car const)
(:entry (:entry
(reference-core-function code-obj index (reference-core-function code-obj index
(cdr const) object))))))))) (cdr const) object))
(:fdefinition
(setf (code-header-ref code-obj index)
(lisp::fdefinition-object (cdr const) t))))))))))
(undefined-value)) (undefined-value))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment