From 44501b490ea9590bbc26c6f3ae3df19977111d35 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 17 Apr 1991 21:36:54 +0000 Subject: [PATCH] Fixed a lifetime bug in def-small-data-vector-frobs that was causing the #* read macro to return incorrect bit-vectors. --- compiler/sparc/array.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/array.lisp b/compiler/sparc/array.lisp index 47ba3b7bf..6eac60ecc 100644 --- a/compiler/sparc/array.lisp +++ b/compiler/sparc/array.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.3 1991/03/07 18:42:29 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.4 1991/04/17 21:36:54 wlott Exp $ ;;; ;;; This file contains the SPARC definitions for array operations. ;;; @@ -216,7 +216,7 @@ (:results (result :scs (unsigned-reg))) (:result-types positive-fixnum) (:temporary (:scs (non-descriptor-reg)) temp old offset) - (:temporary (:scs (non-descriptor-reg) :from :eval) shift) + (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) shift) (:generator 25 (inst srl offset index ,bit-shift) (inst sll offset 2) -- GitLab