From da692e4928593b90fecf7430ccb65010be8cb809 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 11 Feb 1991 13:46:58 +0000
Subject: [PATCH] Added error check to squelch type warning.

---
 compiler/copyprop.lisp  | 5 +++--
 compiler/represent.lisp | 5 ++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/compiler/copyprop.lisp b/compiler/copyprop.lisp
index 124a40604..cc75699e9 100644
--- a/compiler/copyprop.lisp
+++ b/compiler/copyprop.lisp
@@ -166,8 +166,9 @@
 	   (return nil)))
        (let ((info (vop-info vop)))
 	 (not (and (eq (vop-info-move-args info) :local-call)
-		   (>= (position-in #'tn-ref-across arg (vop-args vop)
-				    :key #'tn-ref-tn)
+		   (>= (or (position-in #'tn-ref-across arg (vop-args vop)
+					:key #'tn-ref-tn)
+			   (error "Couldn't find REF?"))
 		       (length (template-arg-types info))))))))
 
 
diff --git a/compiler/represent.lisp b/compiler/represent.lisp
index d523a4461..79c2b8c43 100644
--- a/compiler/represent.lisp
+++ b/compiler/represent.lisp
@@ -47,7 +47,10 @@
 		 ((null costs)
 		  (assert more-cost)
 		  (values arg-p
-			  (+ n (position-in #'tn-ref-across ref refs) 1)
+			  (+ n
+			     (or (position-in #'tn-ref-across ref refs)
+				 (error "Couldn't find REF?"))
+			     1)
 			  t
 			  more-cost
 			  nil
-- 
GitLab