From d8f7fc6bbcabc796a427bbf2b7f72c9edfc2dee1 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Wed, 13 May 1998 04:01:12 +0000 Subject: [PATCH] Fix some storage class problems in the list length VOPs which broke the non-list error reporting. --- compiler/x86/subprim.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/x86/subprim.lisp b/compiler/x86/subprim.lisp index bf91e318c..4c56cf0e0 100644 --- a/compiler/x86/subprim.lisp +++ b/compiler/x86/subprim.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/subprim.lisp,v 1.3 1998/02/19 19:35:05 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/subprim.lisp,v 1.4 1998/05/13 04:01:12 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -28,7 +28,7 @@ (:args (object :scs (descriptor-reg control-stack) :target ptr)) (:arg-types list) (:temporary (:sc unsigned-reg :offset eax-offset) eax) - (:temporary (:sc unsigned-reg :from (:argument 0)) ptr) + (:temporary (:sc descriptor-reg :from (:argument 0)) ptr) (:results (count :scs (any-reg))) (:result-types positive-fixnum) (:policy :fast-safe) @@ -65,7 +65,7 @@ (:translate length) (:args (object :scs (descriptor-reg control-stack) :target ptr)) (:arg-types list) - (:temporary (:sc unsigned-reg :from (:argument 0)) ptr) + (:temporary (:sc descriptor-reg :from (:argument 0)) ptr) (:results (count :scs (any-reg))) (:result-types positive-fixnum) (:policy :fast) -- GitLab