X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fsparc-vm.lisp;h=1ef6009e1d18a5077e1e746f07d7c401a59e38c9;hb=b36697e233ff1ef1cc3ad2e687581520656d4755;hp=3d214b51349038733689fb0e1d412c72b0371c9e;hpb=b062a0cffdc3e1706a67c487d2bc5e406c104893;p=sbcl.git diff --git a/src/code/sparc-vm.lisp b/src/code/sparc-vm.lisp index 3d214b5..1ef6009 100644 --- a/src/code/sparc-vm.lisp +++ b/src/code/sparc-vm.lisp @@ -9,13 +9,9 @@ ;;;; provided with absolutely no warranty. See the COPYING and CREDITS ;;;; files for more information. (in-package "SB!VM") - - ;;; 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 @@ -23,10 +19,9 @@ "Returns a string describing the type of the local machine." "SPARC") -(defun machine-version () - "Returns a string describing the version of the local machine." - "SPARC") - +;;; support for CL:MACHINE-VERSION defined OAOO elsewhere +(defun get-machine-version () + nil) (defun fixup-code-object (code offset fixup kind) (declare (type index offset)) @@ -105,6 +100,7 @@ ;;; Under Linux, we have to contend with utterly broken signal handling. #!+linux (defun context-floating-point-modes (context) + (declare (ignore context)) (warn "stub CONTEXT-FLOATING-POINT-MODES") 0)