Skip to content
Snippets Groups Projects
Commit 1d600dc6 authored by dtc's avatar dtc
Browse files

Compile hash-new and build it into the core given the :hash-new

feature.
parent 725ab9ee
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/tools/worldbuild.lisp,v 1.36 1997/09/24 06:19:06 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.37 1997/11/04 14:47:32 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -89,7 +89,9 @@ ...@@ -89,7 +89,9 @@
"target:code/irrat" "target:code/irrat"
"target:code/bignum" "target:code/bignum"
"target:code/list" "target:code/list"
"target:code/hash" ,@(if (c:backend-featurep :hash-new)
'("target:code/hash-new")
'("target:code/hash"))
"target:code/macros" "target:code/macros"
"target:code/symbol" "target:code/symbol"
"target:code/string" "target:code/string"
......
...@@ -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/tools/worldcom.lisp,v 1.73 1997/09/24 06:19:05 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.74 1997/11/04 14:47:31 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -125,7 +125,9 @@ ...@@ -125,7 +125,9 @@
(comf "target:code/bit-bash") (comf "target:code/bit-bash")
(comf "target:code/byte-interp") (comf "target:code/byte-interp")
(comf "target:code/array") (comf "target:code/array")
(comf "target:code/hash") (if (c:backend-featurep :hash-new)
(comf "target:code/hash-new")
(comf "target:code/hash"))
(with-compilation-unit (with-compilation-unit
(:optimize '(optimize (safety 1))) (:optimize '(optimize (safety 1)))
......
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