From b2271aea22dd316706fa0caabf4d3f647d73ecbd Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Mon, 29 Sep 1997 05:06:53 +0000
Subject: [PATCH] Fix for the index calc. in the instance-set-conditional VOP.

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

diff --git a/compiler/x86/cell.lisp b/compiler/x86/cell.lisp
index d7ef4219d..b6e4e5a4b 100644
--- a/compiler/x86/cell.lisp
+++ b/compiler/x86/cell.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
- "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/cell.lisp,v 1.3 1997/09/29 04:40:34 dtc Exp $")
+ "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/cell.lisp,v 1.4 1997/09/29 05:06:53 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -317,7 +317,7 @@
   (:generator 5
     (move eax old-value)
     (move temp new-value)
-    (inst cmpxchg (make-ea :dword :base object :index slot :scale 4
+    (inst cmpxchg (make-ea :dword :base object :index slot :scale 1
 			   :disp (- (* instance-slots-offset word-bytes)
 				    instance-pointer-type))
 	  temp)
-- 
GitLab