From 2a9b9d1602fb14de7ffd2461ea8e916c708a0a4d Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Tue, 18 May 2004 02:29:12 +0000 Subject: [PATCH] The SYMBOL-HASH vop actually returns a fixnum, not a positive-fixnum, to allow returning the -1 uninitialized hash indicator. --- compiler/x86/cell.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/x86/cell.lisp b/compiler/x86/cell.lisp index 9ec64d9c9..5e2bc97b0 100644 --- a/compiler/x86/cell.lisp +++ b/compiler/x86/cell.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/cell.lisp,v 1.14 2004/05/17 17:22:31 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/cell.lisp,v 1.15 2004/05/18 02:29:12 rtoy Rel $") ;;; ;;; ********************************************************************** ;;; @@ -139,7 +139,7 @@ (:translate symbol-hash) (:args (symbol :scs (descriptor-reg))) (: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