Skip to content
Snippets Groups Projects
Commit 075125b2 authored by dtc's avatar dtc
Browse files

Under GENCGC the code objects are currently placed in the read-only

space by genesis.
parent 16de1fcc
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,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/new-genesis.lisp,v 1.27 1997/11/04 14:50:25 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/new-genesis.lisp,v 1.28 1997/11/04 15:36:56 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1487,7 +1487,9 @@ ...@@ -1487,7 +1487,9 @@
(round-up raw-header-size 2)) (round-up raw-header-size 2))
(des (allocate-descriptor (des (allocate-descriptor
(if (c:backend-featurep :x86) (if (c:backend-featurep :x86)
*static* (if (c:backend-featurep :gencgc)
*read-only*
*static*)
*dynamic*) *dynamic*)
(+ (ash header-size vm:word-shift) size) (+ (ash header-size vm:word-shift) size)
vm:other-pointer-type))) vm:other-pointer-type)))
......
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