diff --git a/code/symbol.lisp b/code/symbol.lisp index 0899e911250e64287b1dc3ae5485ac40d24e1b6c..c8be34b61a044dc75372ce0c7429adbf4eb131d2 100644 --- a/code/symbol.lisp +++ b/code/symbol.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/symbol.lisp,v 1.35 2004/05/17 17:22:30 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/symbol.lisp,v 1.36 2004/05/18 01:14:04 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -98,9 +98,9 @@ "Make and return a new symbol with the STRING as its print name." #-(or gengc x86 sparc) (make-symbol string) #+gengc (%make-symbol (random most-positive-fixnum) string) - ;; Initialize the symbol-hash to 0 to make this fast. It will get + ;; Initialize the symbol-hash to -1 to make this fast. It will get ;; computed correctly later on. - #+(or sparc x86) (%make-symbol 0 string)) + #+(or sparc x86) (%make-symbol -1 string)) #+(or gengc x86 sparc) (defun symbol-hash (symbol) diff --git a/compiler/generic/objdef.lisp b/compiler/generic/objdef.lisp index 0d32974fe20b9a9c87e89193661fccd4bb21ccad..049ce1bafaeb2c1b8ca041da6233cca150ec3fca 100644 --- a/compiler/generic/objdef.lisp +++ b/compiler/generic/objdef.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/objdef.lisp,v 1.53 2004/05/17 17:22:30 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/objdef.lisp,v 1.54 2004/05/18 01:14:04 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -471,7 +471,7 @@ (flushable movable)) #+(or gengc sparc x86) -(defknown symbol-hash (symbol) index +(defknown symbol-hash (symbol) fixnum (flushable movable)) #+(or gencgc sparc x86) diff --git a/compiler/sparc/cell.lisp b/compiler/sparc/cell.lisp index f81ece49f6d2da15f23b72a9fc6964d71c2050c2..0165331489121c207f3c639c4f5f9930192ec650 100644 --- a/compiler/sparc/cell.lisp +++ b/compiler/sparc/cell.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.25 2004/05/17 17:22:30 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.26 2004/05/18 01:14:05 rtoy Rel $") ;;; ;;; ********************************************************************** ;;; @@ -97,7 +97,7 @@ (:translate symbol-hash) (:args (symbol :scs (descriptor-reg null))) (:results (res :scs (any-reg))) - (:result-types positive-fixnum) + (:result-types tagged-num) (:generator 2 ;; the symbol-hash slot of NIL holds NIL because it is also the cdr ;; slot, so we have to strip off the two low bits to make sure it is