From 36c1d699b9e653f9bd905677af81d3725d36ee48 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Sun, 7 Dec 1997 17:46:04 +0000 Subject: [PATCH] Fix for top-frame. %caller-frame-and-pc now returns a SAP for the program counter on the x86 port, and it was generating a further SAP pointing to this SAP and trying to use it as a program counter when it should have been simply passing on the original SAP. --- code/debug-int.lisp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/debug-int.lisp b/code/debug-int.lisp index 13e418c7e..0db19f6e1 100644 --- a/code/debug-int.lisp +++ b/code/debug-int.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.80 1997/12/05 00:48:36 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.81 1997/12/07 17:46:04 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -985,11 +985,10 @@ "Returns the top frame of the control stack as it was before calling this function." (multiple-value-bind (fp pc) - (kernel:%caller-frame-and-pc) + (kernel:%caller-frame-and-pc) (possibly-an-interpreted-frame (compute-calling-frame (descriptor-sap fp) - #-(or gengc x86) pc - #+(or gengc x86) (descriptor-sap pc) + #-gengc pc #+gengc (descriptor-sap pc) nil) nil))) -- GitLab