From caf87e811f53b73c3bad7d5c76ae598a09dea1d8 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Wed, 20 Jun 2007 17:33:08 +0000
Subject: [PATCH] Displaced arrays should have element types that are type
 equivalent. Signal an error if they're not.

(Previously, only checked to see if the element-type was a subtype of
the displaced-to array.)
---
 code/array.lisp | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/code/array.lisp b/code/array.lisp
index 65a7d4b2a..d325ce356 100644
--- a/code/array.lisp
+++ b/code/array.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.42 2007/01/13 01:16:30 fgilham Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.43 2007/06/20 17:33:08 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -240,8 +240,14 @@
 		 (when (or initial-element-p initial-contents-p)
 		   (error "Neither :initial-element nor :initial-contents ~
 		   can be specified along with :displaced-to"))
-		 (unless (subtypep element-type
-				   (array-element-type displaced-to))
+		 ;; The CLHS entry for MAKE-ARRAY says that if the
+		 ;; actual array element types are not type equivalent
+		 ;; (subtypes of each other), the consequences are
+		 ;; undefined.  Let's signal an error here.
+		 (unless (and (subtypep (upgraded-array-element-type element-type)
+					(array-element-type displaced-to))
+			      (subtypep (array-element-type displaced-to)
+					(upgraded-array-element-type element-type)))
 		   (error "One can't displace an array of type ~S into ~
                            another of type ~S."
 			  element-type (array-element-type displaced-to)))
-- 
GitLab