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

Cleaned up the structure defknowns. Use structure-index instead of index

flushed the defknown for structurify, and added one for make-structure.
parent 41ec2435
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.31 1990/12/03 20:03:45 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.32 1990/12/18 20:44:00 wlott Exp $
;;; ;;;
;;; This file defines the machine specific function signatures. ;;; This file defines the machine specific function signatures.
;;; ;;;
...@@ -97,13 +97,15 @@ ...@@ -97,13 +97,15 @@
(unsafe)) (unsafe))
(defknown structurify (simple-vector) structure (defknown make-structure (structure-index t) structure
(unsafe)) (unsafe))
(defknown structure-length (structure) index (defknown structure-type (structure) t
(flushable)) (foldable flushable))
(defknown structure-ref (structure index) t (defknown structure-length (structure) structure-index
(foldable flushable))
(defknown structure-ref (structure structure-index) t
(flushable)) (flushable))
(defknown structure-set (structure index t) t (defknown structure-set (structure structure-index t) t
(unsafe)) (unsafe))
......
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