Skip to content
Snippets Groups Projects
Commit 7698e84f authored by dtc's avatar dtc
Browse files

Correct the declared result types of a few functions:

o copy-to-system-area, copy-from-system-area, system-area-copy, and
  bit-bash-copy, all return the undefined value rather then type null,
  so declare it as type t.
parent 4d2cf7b6
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.62 1999/02/25 13:03:13 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.63 2000/07/09 16:08:43 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -283,23 +283,23 @@ ...@@ -283,23 +283,23 @@
(defknown copy-to-system-area (defknown copy-to-system-area
((simple-unboxed-array (*)) index system-area-pointer index index) ((simple-unboxed-array (*)) index system-area-pointer index index)
null t
()) ())
(defknown copy-from-system-area (defknown copy-from-system-area
(system-area-pointer index (simple-unboxed-array (*)) index index) (system-area-pointer index (simple-unboxed-array (*)) index index)
null t
()) ())
(defknown system-area-copy (defknown system-area-copy
(system-area-pointer index system-area-pointer index index) (system-area-pointer index system-area-pointer index index)
null t
()) ())
(defknown bit-bash-copy (defknown bit-bash-copy
((simple-unboxed-array (*)) index ((simple-unboxed-array (*)) index
(simple-unboxed-array (*)) index index) (simple-unboxed-array (*)) index index)
null t
()) ())
......
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