From 8e4641b0874729e4084b8743523e9bdcd3daa440 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 29 Mar 1990 16:24:42 +0000
Subject: [PATCH] Changed LISP-JUMP and LISP-RETURN macros to frob the code
 object during the branch delay slot of the transfer.

---
 compiler/mips/macros.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/mips/macros.lisp b/compiler/mips/macros.lisp
index b5fd638fb..e50bff2ac 100644
--- a/compiler/mips/macros.lisp
+++ b/compiler/mips/macros.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.26 1990/03/22 00:23:54 ch Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.27 1990/03/29 16:24:42 wlott Exp $
 ;;;
 ;;;    This file contains various useful macros for generating MIPS code.
 ;;;
@@ -129,14 +129,14 @@
 					vm:word-shift)
 				   vm:function-pointer-type))
      (inst jr ,lip)
-     (nop)))
+     (move code-tn ,function)))
 
 (defmacro lisp-return (return-pc lip)
   "Return to RETURN-PC.  LIP is an interior-reg temporary."
   `(progn
      (inst addiu ,lip ,return-pc (- vm:word-bytes vm:other-pointer-type))
      (inst jr ,lip)
-     (nop)))
+     (move code-tn ,return-pc)))
 
 (defmacro emit-return-pc (label)
   "Emit a return-pc header word.  LABEL is the label to use for this return-pc."
-- 
GitLab