Skip to content
Snippets Groups Projects
Commit 0e6110e9 authored by wlott's avatar wlott
Browse files

Added defknown for %make-funcallable-instance.

parent 2aea9391
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; 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. ;;; This file defines the machine specific function signatures.
;;; ;;;
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
(import '(lisp::%raw-bits lisp::simple-array-p)) (import '(lisp::%raw-bits lisp::simple-array-p))
(in-package "KERNEL") (in-package "KERNEL")
(export '(%set-funcallable-instance-info funcallable-instance-p)) (export '(funcallable-instance-p %set-funcallable-instance-info))
(in-package "C") (in-package "C")
...@@ -76,8 +76,12 @@ ...@@ -76,8 +76,12 @@
(defknown %closure-index-ref (function index) t (defknown %closure-index-ref (function index) t
(flushable)) (flushable))
(defknown %make-funcallable-instance (index function) function (unsafe))
(defknown %set-funcallable-instance-info (function index t) t (unsafe)) (defknown %set-funcallable-instance-info (function index t) t (unsafe))
(defknown vector-sap ((simple-unboxed-array (*))) system-area-pointer (defknown vector-sap ((simple-unboxed-array (*))) system-area-pointer
(flushable)) (flushable))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment