X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fcross-sap.lisp;h=fc0d0a0f907ad63b0a6bdc2500565cc9c10cc5e0;hb=25e76ec2b1083ac6a4bba42af7ad7b5a8239f2b8;hp=0db3c163332bd0d6ae9a6847152f2748f3281aaf;hpb=0b5610d8a220a4b20cbeac958953ca4d67c00038;p=sbcl.git diff --git a/src/code/cross-sap.lisp b/src/code/cross-sap.lisp index 0db3c16..fc0d0a0 100644 --- a/src/code/cross-sap.lisp +++ b/src/code/cross-sap.lisp @@ -18,13 +18,13 @@ (defstruct (system-area-pointer (:constructor make-sap) (:conc-name "SAP-")) ;; the integer representation of the address - (int (error "missing SAP-INT argument") :type sap-int-type :read-only t)) + (int (error "missing SAP-INT argument") :type sap-int :read-only t)) ;;; cross-compilation-host analogues of target-CMU CL primitive SAP operations (defun int-sap (int) (make-sap :int int)) (defun sap+ (sap offset) - (declare (type system-area-pointer sap) (type sap-int-type offset)) + (declare (type system-area-pointer sap) (type sap-int offset)) (make-sap :int (+ (sap-int sap) offset))) #.`(progn ,@(mapcar (lambda (info)