From dba64da75448a050812eb8477fcc5afa6a1973ed Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 6 May 1991 17:00:08 +0000
Subject: [PATCH] Fixed MAYBE-LOAD-STACK-TN to accept word-pointer and
 non-descriptor regs.

---
 compiler/rt/macros.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/rt/macros.lisp b/compiler/rt/macros.lisp
index a6245b75a..22f8e5b6e 100644
--- a/compiler/rt/macros.lisp
+++ b/compiler/rt/macros.lisp
@@ -167,9 +167,9 @@
   (once-only ((n-reg reg)
 	      (n-stack reg-or-stack))
     `(sc-case ,n-reg
-       ((any-reg descriptor-reg)
+       ((any-reg descriptor-reg non-descriptor-reg word-pointer-reg)
 	(sc-case ,n-stack
-	  ((any-reg descriptor-reg)
+	  ((any-reg descriptor-reg non-descriptor-reg word-pointer-reg)
 	   (move ,n-reg ,n-stack))
 	  ((control-stack)
 	   (loadw ,n-reg cfp-tn (tn-offset ,n-stack))))))))
-- 
GitLab