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

Left out a comma in the middle of a def-source-transform.

parent ea3ac115
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.14 1992/03/11 18:32:49 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.15 1992/03/11 20:47:38 wlott Exp $
;;; ;;;
;;; This file contains the IBM RT VM definition of SAP operations. ;;; This file contains the IBM RT VM definition of SAP operations.
;;; ;;;
...@@ -388,7 +388,7 @@ need to be shifted. ...@@ -388,7 +388,7 @@ need to be shifted.
(def-source-transform sap-ref-double (sap offset) (def-source-transform sap-ref-double (sap offset)
(once-only ((sap sap) (offset offset)) (once-only ((sap sap) (offset offset))
`(make-double-float (signed-sap-ref-32 ,sap ,offset) `(make-double-float (signed-sap-ref-32 ,sap ,offset)
(sap-ref-32 sap (+ ,offset word-bytes))))) (sap-ref-32 ,sap (+ ,offset word-bytes)))))
(def-source-transform %set-sap-ref-double (sap offset value) (def-source-transform %set-sap-ref-double (sap offset value)
(once-only ((sap sap) (offset offset) (value value)) (once-only ((sap sap) (offset offset) (value 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