From 83267365c7322dca7522c4a849e7ad7a30aa66d0 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Thu, 16 Aug 1990 16:44:19 +0000
Subject: [PATCH] Changed the return-pc/old-cont save TNs to be DEBUG-LIVE.

---
 compiler/old-rt/call.lisp | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/compiler/old-rt/call.lisp b/compiler/old-rt/call.lisp
index a99d80106..5a696d5d2 100644
--- a/compiler/old-rt/call.lisp
+++ b/compiler/old-rt/call.lisp
@@ -62,14 +62,16 @@
 ;;; known location.
 ;;;
 (defun make-old-fp-save-location (env)
-  (environment-live-tn
-   (make-wired-tn *any-primitive-type* stack-arg-scn old-fp-save-offset)
-   env))
+  (specify-save-tn
+   (environment-debug-live-tn (make-normal-tn *any-primitive-type*)
+			      env)
+   (make-wired-tn *any-primitive-type* stack-arg-scn old-fp-save-offset)))
 ;;;
 (defun make-return-pc-save-location (env)
-  (environment-live-tn
-   (make-wired-tn *any-primitive-type* stack-arg-scn return-pc-save-offset)
-   env))
+  (specify-save-tn
+   (environment-debug-live-tn (make-normal-tn *any-primitive-type*)
+			      env)
+   (make-wired-tn *any-primitive-type* stack-arg-scn return-pc-save-offset)))
 
 
 ;;; Make-Argument-Count-Location  --  Interface
-- 
GitLab