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

Simple strings hold string-chars, not base-characters (yet). This caused

(primitive-type 'simple-string) to return T.
parent 89681303
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU) ;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.14 1990/03/06 20:03:39 ch Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/vm.lisp,v 1.15 1990/03/07 18:48:01 wlott Exp $
;;; ;;;
;;; This file contains the VM definition for the MIPS R2000 and the new ;;; This file contains the VM definition for the MIPS R2000 and the new
;;; object format. ;;; object format.
...@@ -246,7 +246,7 @@ ...@@ -246,7 +246,7 @@
;;; ;;;
(defvar *simple-array-primitive-types* (defvar *simple-array-primitive-types*
'((base-character . simple-string) '((string-char . simple-string)
(bit . simple-bit-vector) (bit . simple-bit-vector)
((unsigned-byte 2) . simple-array-unsigned-byte-2) ((unsigned-byte 2) . simple-array-unsigned-byte-2)
((unsigned-byte 4) . simple-array-unsigned-byte-4) ((unsigned-byte 4) . simple-array-unsigned-byte-4)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment