X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fentry.lisp;h=83d5a00809dc1135fdababc50994f01bd9e596d1;hb=49e8403800426f37a54d9b87353a31af36e7af40;hp=ae95297d46fed950ef6d66ecfaf5d299638c4897;hpb=f181ad9ffeeadf341b6a16c3591eadf0c1e3fa61;p=sbcl.git diff --git a/src/compiler/entry.lisp b/src/compiler/entry.lisp index ae95297..83d5a00 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)) + (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). + (maybe-emit-make-load-forms args)) (setf (entry-info-type info) (type-specifier (leaf-type internal-fun))))) (values))