From 0d1d25d9eb1d1d7c2aeefe77d290e6fe0f0c9131 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Thu, 9 Oct 1997 21:21:41 +0000
Subject: [PATCH] Fix for merge-type-aux from Raymond Toy; type specifiers must
 have the same format to be able to merged them.

---
 compiler/srctran.lisp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp
index 0c6ffdc0f..dea7f80b2 100644
--- a/compiler/srctran.lisp
+++ b/compiler/srctran.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/compiler/srctran.lisp,v 1.58 1997/10/08 10:39:57 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.59 1997/10/09 21:21:41 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -855,6 +855,8 @@
 	(cond ((and cur-interval this
 		    (eq (numeric-type-class cur) 
 			(numeric-type-class this-interval))
+		    (eq (numeric-type-format cur)
+			(numeric-type-format this-interval))
 		    (or (interval-intersect-p cur-interval this)
 			(interval-adjacent-p cur-interval this)))
 	       (let ((result (interval-merge-pair cur-interval this)))
-- 
GitLab