From: Christophe Rhodes Date: Sun, 2 Jan 2005 23:02:35 +0000 (+0000) Subject: 0.8.18.11: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3820ea37e9a430300e3428a6b0033bd663d6188a;p=sbcl.git 0.8.18.11: Maybe fix the clisp build bug (reported by Pascal Bourguignon) --- diff --git a/src/compiler/node.lisp b/src/compiler/node.lisp index c885f7f..2a7aaf1 100644 --- a/src/compiler/node.lisp +++ b/src/compiler/node.lisp @@ -283,7 +283,11 @@ ;;; component. (def!struct (component (:copier nil) (:constructor - make-component (head tail &aux (last-block tail)))) + make-component + (head + tail &aux + (last-block tail) + (outer-loop (make-loop :kind :outer :head head))))) ;; unique ID for debugging #!+sb-show (id (new-object-id) :read-only t) ;; the kind of component @@ -388,7 +392,7 @@ ;; this is filled by physical environment analysis (dx-lvars nil :type list) ;; The default LOOP in the component. - (outer-loop (make-loop :kind :outer :head head) :type cloop)) + (outer-loop (missing-arg) :type cloop)) (defprinter (component :identity t) name #!+sb-show id diff --git a/version.lisp-expr b/version.lisp-expr index 177d582..d714bf7 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.8.18.10" +"0.8.18.11"