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

Added some type declarations so that a call to make-array gets open coded.

parent 9712d2da
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.17 1992/05/16 16:12:44 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.18 1992/06/27 21:41:22 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -165,6 +165,8 @@ ...@@ -165,6 +165,8 @@
(let* ((size (ceiling size rehash-threshold)) (let* ((size (ceiling size rehash-threshold))
(length (if (<= size 37) 37 (almost-primify size))) (length (if (<= size 37) 37 (almost-primify size)))
(vector (make-array length :initial-element nil))) (vector (make-array length :initial-element nil)))
(declare (type index size length)
(type simple-vector vector))
(%make-hash-table (%make-hash-table
:test test :test test
:test-fun test-fun :test-fun test-fun
......
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