From 4986bffd21fe379a8344d791b85231237c12283d Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 11 Nov 1991 23:13:30 +0000
Subject: [PATCH] Tweaked BAD-COSTS-ERROR not to totally die when it is called
 on a more operand.

---
 compiler/represent.lisp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/compiler/represent.lisp b/compiler/represent.lisp
index d13c43c13..0d9cb611d 100644
--- a/compiler/represent.lisp
+++ b/compiler/represent.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/represent.lisp,v 1.28 1991/11/08 15:25:33 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/represent.lisp,v 1.29 1991/11/11 23:13:30 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -133,7 +133,8 @@
 	       (primitive-type-name ptype)
 	       (mapcar #'sc-name (losers))
 	       more-p
-	       (mapcar #'sc-name (listify-restrictions load-scs))
+	       (unless more-p
+		 (mapcar #'sc-name (listify-restrictions load-scs)))
 	       incon)))))
 
 
-- 
GitLab