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

Added a hack to get (setf sap-ref-32) to work. Basically, the result type

has to be asserted as more restrictive than the defknown, 'cause there is
no primitive type that covers (or (signed-byte 32) (unsigned-byte 32)).
parent 2e653350
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.1.1.18 1990/06/11 02:25:52 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.1.1.19 1990/06/24 19:35:15 wlott Exp $
;;;
;;; This file contains any the part of the Alien implementation that
;;; is not part of the compiler.
......@@ -156,7 +156,9 @@
(declare (type system-area-pointer sap)
(type index offset)
(type (or (signed-byte 32) (unsigned-byte 32)) new-value))
(setf (sap-ref-32 sap offset) new-value))
(if (minusp new-value)
(truly-the (signed-byte 32) (setf (sap-ref-32 sap offset) new-value))
(truly-the (unsigned-byte 32) (setf (sap-ref-32 sap offset) new-value))))
(defun %set-sap-ref-sap (sap offset new-value)
(declare (type system-area-pointer sap new-value)
......
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