From c15f6a9fa1a96a6e6c55ad38744b7bce893b7c65 Mon Sep 17 00:00:00 2001
From: ch <ch>
Date: Tue, 6 Mar 1990 20:03:39 +0000
Subject: [PATCH] Added type to base-character primitive type definition.  May
 not be the right thing to do though.

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

diff --git a/compiler/mips/vm.lisp b/compiler/mips/vm.lisp
index b2b15b2fd..6de6289e6 100644
--- a/compiler/mips/vm.lisp
+++ b/compiler/mips/vm.lisp
@@ -7,7 +7,7 @@
 ;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.13 1990/03/05 21:12:05 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.14 1990/03/06 20:03:39 ch Exp $
 ;;;
 ;;; This file contains the VM definition for the MIPS R2000 and the new
 ;;; object format.
@@ -187,9 +187,10 @@
 ;;; 
 (def-primitive-type fixnum (any-reg control-stack))
 
-(def-primitive-type base-character (base-character-reg any-reg
-						       base-character-stack
-						       control-stack))
+(def-primitive-type base-character
+		    (base-character-reg any-reg base-character-stack
+					control-stack)
+  :type string-char) ; ### base-character
 
 ;;; 
 (def-primitive-type function (descriptor-reg control-stack))
-- 
GitLab