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

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

generate incorrect bit vectors.
parent 4718ea77
No related branches found
No related tags found
No related merge requests found
...@@ -7,11 +7,11 @@ ...@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.30 1991/02/20 15:14:11 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.31 1991/04/16 20:10:37 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.30 1991/02/20 15:14:11 ram Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.31 1991/04/16 20:10:37 wlott Exp $
;;; ;;;
;;; This file contains the MIPS definitions for array operations. ;;; This file contains the MIPS definitions for array operations.
;;; ;;;
...@@ -222,7 +222,7 @@ ...@@ -222,7 +222,7 @@
(:result-types positive-fixnum) (:result-types positive-fixnum)
(:temporary (:scs (interior-reg)) lip) (:temporary (:scs (interior-reg)) lip)
(:temporary (:scs (non-descriptor-reg)) temp old) (:temporary (:scs (non-descriptor-reg)) temp old)
(:temporary (:scs (non-descriptor-reg) :from :eval) shift) (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) shift)
(:generator 25 (:generator 25
(inst srl temp index ,bit-shift) (inst srl temp index ,bit-shift)
(inst sll temp 2) (inst sll temp 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