From 0e6110e9358ce1a2a12c36dc2674ef0b53be8580 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 24 Nov 1990 09:20:40 +0000 Subject: [PATCH] Added defknown for %make-funcallable-instance. --- compiler/generic/vm-fndb.lisp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compiler/generic/vm-fndb.lisp b/compiler/generic/vm-fndb.lisp index 51c125c66..08a9ac1f3 100644 --- a/compiler/generic/vm-fndb.lisp +++ b/compiler/generic/vm-fndb.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.29 1990/11/24 09:03:15 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.30 1990/11/24 09:20:40 wlott Exp $ ;;; ;;; This file defines the machine specific function signatures. ;;; @@ -18,7 +18,7 @@ (import '(lisp::%raw-bits lisp::simple-array-p)) (in-package "KERNEL") -(export '(%set-funcallable-instance-info funcallable-instance-p)) +(export '(funcallable-instance-p %set-funcallable-instance-info)) (in-package "C") @@ -76,8 +76,12 @@ (defknown %closure-index-ref (function index) t (flushable)) + +(defknown %make-funcallable-instance (index function) function (unsafe)) + (defknown %set-funcallable-instance-info (function index t) t (unsafe)) + (defknown vector-sap ((simple-unboxed-array (*))) system-area-pointer (flushable)) -- GitLab