mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Don't bother preloading the flonum table.
It's not necessary and potentially adds extra unused entries.
This commit is contained in:
parent
cfa83608f5
commit
c2b5f3eb2d
|
|
@ -129,14 +129,6 @@
|
|||
(single-float 32)
|
||||
(double-float 64)))
|
||||
|
||||
;;; Preload the interned flonum table
|
||||
(dolist (format '(single-float double-float))
|
||||
(make-flonum 0 format)
|
||||
(let ((sign (ash -1 (1- (float-format-bits format)))))
|
||||
(make-flonum sign format))
|
||||
(make-flonum :+infinity format)
|
||||
(make-flonum :-infinity format))
|
||||
|
||||
(defun float-ops-cache-insert (table key values)
|
||||
;; Verify results (when possible) prior to inserting into the hash-table.
|
||||
;; If we were to support different floating-point formats across the various
|
||||
|
|
|
|||
Loading…
Reference in a new issue