Skip to content
Snippets Groups Projects
Commit 4340ac4b authored by wlott's avatar wlott
Browse files

Added defknowns for allocate-vector and make-array-header.

parent 519803d1
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.26 1990/10/09 23:10:43 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.27 1990/11/10 18:40:23 wlott Exp $
;;; ;;;
;;; This file defines the machine specific function signatures. ;;; This file defines the machine specific function signatures.
;;; ;;;
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
(import '(lisp::%raw-bits lisp::simple-array-p)) (import '(lisp::%raw-bits lisp::simple-array-p))
;;;; Internal type predicates: ;;;; Internal type predicates:
;;; ;;;
...@@ -105,6 +106,13 @@ ...@@ -105,6 +106,13 @@
(unsafe)) (unsafe))
(defknown allocate-vector ((unsigned-byte 8) index index) (simple-array * (*))
(flushable movable))
(defknown make-array-header ((unsigned-byte 8) (unsigned-byte 24)) array
(flushable movable))
(defknown %make-weak-pointer (t boolean) weak-pointer (defknown %make-weak-pointer (t boolean) weak-pointer
(flushable)) (flushable))
(defknown %make-complex (real real) complex (defknown %make-complex (real real) complex
......
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