From 2fd761079657c9a17c0787822e9a79fea608b485 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 24 Jan 1991 18:21:37 +0000 Subject: [PATCH] Added funcallable-instance case to set-symbol-function. --- compiler/sparc/cell.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/sparc/cell.lisp b/compiler/sparc/cell.lisp index 7eb21d227..07f7b8528 100644 --- a/compiler/sparc/cell.lisp +++ b/compiler/sparc/cell.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.3 1991/01/09 02:10:50 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.4 1991/01/24 18:21:37 wlott Exp $ ;;; ;;; This file contains the VM definition of various primitive memory access ;;; VOPs for the SPARC. @@ -197,6 +197,8 @@ (inst nop) (inst cmp type vm:closure-header-type) (inst b :eq closure) + (inst cmp type vm:funcallable-instance-header-type) + (inst b :eq closure) (inst cmp type vm:function-header-type) (inst b :eq normal-fn) (inst move temp function) -- GitLab