From 550030c74b74431364cb259bdfc683dac62140cd Mon Sep 17 00:00:00 2001 From: ch <ch> Date: Sun, 18 Mar 1990 23:29:25 +0000 Subject: [PATCH] Fixed a bogosity in the SYMBOL-FUNCTION vop. --- compiler/mips/cell.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/mips/cell.lisp b/compiler/mips/cell.lisp index 45f5957dc..ae6d38191 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.21 1990/03/08 11:11:26 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.22 1990/03/18 23:29:25 ch Exp $ ;;; ;;; This file contains the VM definition of various primitive memory access ;;; VOPs for the MIPS. @@ -365,7 +365,7 @@ (:translate symbol-function) (:generator 10 (move obj-temp object) - (loadw value obj-temp symbol-function-slot) + (loadw value obj-temp vm:symbol-function-slot vm:other-pointer-type) (let ((err-lab (generate-error-code node di:undefined-symbol-error obj-temp))) (test-simple-type value temp err-lab t vm:function-pointer-type)))) -- GitLab