Skip to content
Snippets Groups Projects
Commit 44501b49 authored by wlott's avatar wlott
Browse files

Fixed a lifetime bug in def-small-data-vector-frobs that was causing the #*

read macro to return incorrect bit-vectors.
parent faa02281
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; 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. ;;; This file contains the SPARC definitions for array operations.
;;; ;;;
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
(:results (result :scs (unsigned-reg))) (:results (result :scs (unsigned-reg)))
(:result-types positive-fixnum) (:result-types positive-fixnum)
(:temporary (:scs (non-descriptor-reg)) temp old offset) (: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 (:generator 25
(inst srl offset index ,bit-shift) (inst srl offset index ,bit-shift)
(inst sll offset 2) (inst sll offset 2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment