From 56808b6446fb97eeeeb743e4d89d6f607a561fe0 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Tue, 18 May 2004 01:14:05 +0000
Subject: [PATCH] Use -1 instead of 0 as the uninitialized hash indicator.

---
 code/symbol.lisp             | 6 +++---
 compiler/generic/objdef.lisp | 4 ++--
 compiler/sparc/cell.lisp     | 4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/code/symbol.lisp b/code/symbol.lisp
index 0899e9112..c8be34b61 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 0d32974fe..049ce1baf 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 f81ece49f..016533148 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
-- 
GitLab