Skip to content

Commit

Permalink
1.0.22.17: fix cross-compile from CMUCL 19e
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Mastenbrook committed Nov 7, 2008
1 parent 93c21ba commit f222dcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/compiler/constraint.lisp
Expand Up @@ -136,8 +136,8 @@
;; from the following declarations. Probably you'll want to
;; disable these declarations when debugging consets.
(declare #-sb-xc-host (optimize (speed 3) (safety 0) (space 0)))
(declaim (inline constraint-number))
(defun constraint-number (constraint)
(declaim (inline %constraint-number))
(defun %constraint-number (constraint)
(sset-element-number constraint))
(defstruct (conset
(:constructor make-conset ())
Expand Down Expand Up @@ -222,15 +222,15 @@
(values))

(defun conset-member (constraint conset)
(let ((number (constraint-number constraint))
(let ((number (%constraint-number constraint))
(vector (conset-vector conset)))
(when (< number (length vector))
(plusp (sbit vector number)))))

(defun conset-adjoin (constraint conset)
(prog1
(not (conset-member constraint conset))
(let ((number (constraint-number constraint)))
(let ((number (%constraint-number constraint)))
(conset-grow conset (1+ number))
(setf (sbit (conset-vector conset) number) 1)
(setf (conset-min conset) (min number (or (conset-min conset)
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -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".)
"1.0.22.16"
"1.0.22.17"

0 comments on commit f222dcf

Please sign in to comment.