X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fentry.lisp;h=d2ace4c7b2cdd42ce889132e4e9ad02d6ce4f28b;hb=cd1b14acf6f548b28b8a14e554d779f0473122ec;hp=ae95297d46fed950ef6d66ecfaf5d299638c4897;hpb=f181ad9ffeeadf341b6a16c3591eadf0c1e3fa61;p=sbcl.git diff --git a/src/compiler/entry.lisp b/src/compiler/entry.lisp index ae95297..d2ace4c 100644 --- a/src/compiler/entry.lisp +++ b/src/compiler/entry.lisp @@ -51,7 +51,12 @@ (when (policy bind (>= debug 1)) (let ((args (functional-arg-documentation internal-fun))) (aver (not (eq args :unspecified))) - (setf (entry-info-arguments info) args)) + ;; When the component is dumped, the arglists of the entry + ;; points will be dumped. If they contain values that need + ;; make-load-form processing then we need to do it now (bug + ;; 310132). + (setf (entry-info-arguments info) + (constant-value (find-constant args)))) (setf (entry-info-type info) (type-specifier (leaf-type internal-fun))))) (values))