X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Falpha-vm.lisp;h=e8b4875a092e5fd23119f2150b847168a6b49b4b;hb=4ba392170e98744f0ef0b8e08a5d42b988f1d0c9;hp=8373714948cd19d76f08e7aa1e80a256bf3c0808;hpb=4898ef32c639b1c7f4ee13a5ba566ce6debd03e6;p=sbcl.git diff --git a/src/code/alpha-vm.lisp b/src/code/alpha-vm.lisp index 8373714..e8b4875 100644 --- a/src/code/alpha-vm.lisp +++ b/src/code/alpha-vm.lisp @@ -14,22 +14,17 @@ ;;; See x86-vm.lisp for a description of this. (define-alien-type os-context-t (struct os-context-t-struct)) -;;;; MACHINE-TYPE and MACHINE-VERSION +;;;; MACHINE-TYPE (defun machine-type () "Return a string describing the type of the local machine." "Alpha") - -;;; support for CL:MACHINE-VERSION defined OAOO elsewhere -(defun get-machine-version () - nil) (defun fixup-code-object (code offset value kind) (unless (zerop (rem offset n-word-bytes)) (error "Unaligned instruction? offset=#x~X." offset)) (sb!sys:without-gcing - (let ((sap (truly-the system-area-pointer - (%primitive code-instructions code)))) + (let ((sap (%primitive code-instructions code))) (ecase kind (:jmp-hint (aver (zerop (ldb (byte 2 0) value)))