From eadc00e65d5bcc76fb5180881d3563b0b9af7f99 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 25 May 1990 20:04:16 +0000
Subject: [PATCH] Moved code-constant-set from system.lisp into cell.lisp so
 that it would be after memory.

---
 compiler/mips/cell.lisp   | 10 +++++++++-
 compiler/mips/system.lisp |  5 +----
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/compiler/mips/cell.lisp b/compiler/mips/cell.lisp
index ce090def9..755d1e327 100644
--- a/compiler/mips/cell.lisp
+++ b/compiler/mips/cell.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.33 1990/04/24 19:09:03 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.34 1990/05/25 20:03:52 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of various primitive memory access
 ;;; VOPs for the MIPS.
@@ -316,3 +316,11 @@
 (define-vop (structure-index-set word-index-set)
   (:variant vm:vector-data-offset vm:other-pointer-type))
 
+
+
+
+;;;; Extra random indexers.
+
+(define-vop (code-constant-set word-index-set)
+  (:variant vm:code-constants-offset vm:other-pointer-type))
+
diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp
index bf33ce05f..8c97346d6 100644
--- a/compiler/mips/system.lisp
+++ b/compiler/mips/system.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.16 1990/05/25 12:29:32 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.17 1990/05/25 20:04:16 wlott Exp $
 ;;;
 ;;;    MIPS VM definitions of various system hacking operations.
 ;;;
@@ -151,9 +151,6 @@
 
 ;;;; Code object frobbing.
 
-(define-vop (code-constant-set word-index-set)
-  (:variant vm:code-constants-offset vm:other-pointer-type))
-
 (define-vop (code-instructions)
   (:args (code :scs (descriptor-reg)))
   (:temporary (:scs (non-descriptor-reg)) ndescr)
-- 
GitLab