From ec1088c61d14bcdfabf46a818e89080dc35da490 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 3 May 1991 02:05:21 +0000
Subject: [PATCH] Changed check-move-function-consistency to use warn to note
 problems instead of error, so that we don't have to define bogus move
 functions for the FPA and APFA SCs on the RT.

---
 compiler/represent.lisp | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/compiler/represent.lisp b/compiler/represent.lisp
index 4a9363de0..54c77eb2f 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.24 1991/04/24 11:27:45 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/represent.lisp,v 1.25 1991/05/03 02:05:21 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -221,19 +221,19 @@
 	(let ((moves (sc-move-functions sc)))
 	  (dolist (const (sc-constant-scs sc))
 	    (unless (svref moves (sc-number const))
-	      (error "No move function defined to load SC ~S from constant ~
-	              SC ~S."
-		     (sc-name sc) (sc-name const))))
-
+	      (warn "No move function defined to load SC ~S from constant ~
+	             SC ~S."
+		    (sc-name sc) (sc-name const))))
+	  
 	  (dolist (alt (sc-alternate-scs sc))
 	    (unless (svref moves (sc-number alt))
-	      (error "No move function defined to load SC ~S from alternate ~
-	              SC ~S."
-		     (sc-name sc) (sc-name alt)))
+	      (warn "No move function defined to load SC ~S from alternate ~
+	             SC ~S."
+		    (sc-name sc) (sc-name alt)))
 	    (unless (svref (sc-move-functions alt) i)
-	      (error "No move function defined to save SC ~S to alternate ~
-	              SC ~S."
-		     (sc-name sc) (sc-name alt)))))))))
+	      (warn "No move function defined to save SC ~S to alternate ~
+	             SC ~S."
+		    (sc-name sc) (sc-name alt)))))))))
 ;;;
 (check-move-function-consistency)
 
-- 
GitLab