From 3c7c2dbe1d77207f8dd10413f25baee42d2c1b48 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 14 May 1990 02:00:23 +0000 Subject: [PATCH] Fixed bug in get-type. --- compiler/mips/system.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp index cc46e9f5f..8041efd12 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.13 1990/05/13 21:49:29 ch Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.14 1990/05/14 02:00:23 wlott Exp $ ;;; ;;; MIPS VM definitions of various system hacking operations. ;;; @@ -89,7 +89,8 @@ (inst and ndescr object vm:type-mask) (emit-label other-ptr) - (load-type ndescr object) + (load-type ndescr object (- vm:other-pointer-type)) + (inst nop) (emit-label shift) (inst sll result ndescr 2)))) -- GitLab