From 0dc9fc4aba10c529c208de1626c12bfc4d6e39b0 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 15 May 1990 01:17:07 +0000
Subject: [PATCH] Fixed a few placed I missed when updating to the new integer
 primitive types.

---
 compiler/mips/array.lisp | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/compiler/mips/array.lisp b/compiler/mips/array.lisp
index dc75c5457..7f9530913 100644
--- a/compiler/mips/array.lisp
+++ b/compiler/mips/array.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.14 1990/05/06 05:22:00 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.15 1990/05/15 01:17:07 wlott Exp $
 ;;;
 ;;;    This file contains the MIPS definitions for array operations.
 ;;;
@@ -130,12 +130,11 @@
 (def-data-vector-frobs simple-vector word-index)
 
 (def-data-vector-frobs simple-array-unsigned-byte-8 byte-index
-  fixnum unsigned-reg)
+  positive-fixnum unsigned-reg)
 (def-data-vector-frobs simple-array-unsigned-byte-16 halfword-index
-  fixnum unsigned-reg)
-;; ### The type for this needs to be fixed.
+  positive-fixnum unsigned-reg)
 (def-data-vector-frobs simple-array-unsigned-byte-32 word-index
-  * unsigned-reg)
+  unsigned-num unsigned-reg)
 
 
 
-- 
GitLab