From 48c0b595a2a0ebfe4021b5355c6db720a0b68fab Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Thu, 2 Nov 2006 14:18:23 +0000 Subject: [PATCH] 0.9.18.26: Err... Also including the 64-bit input routines might make the 64-bit output routines somewhat more useful. --- src/code/fd-stream.lisp | 9 ++++++++- version.lisp-expr | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/code/fd-stream.lisp b/src/code/fd-stream.lisp index a602e80..567c5b4 100644 --- a/src/code/fd-stream.lisp +++ b/src/code/fd-stream.lisp @@ -905,7 +905,14 @@ ((signed-byte 32) 4 sap head) (signed-sap-ref-32 sap head)) - +#+#.(cl:if (cl:= sb!vm:n-word-bits 64) '(and) '(or)) +(progn + (def-input-routine input-unsigned-64bit-byte + ((unsigned-byte 64) 8 sap head) + (sap-ref-64 sap head)) + (def-input-routine input-signed-64bit-byte + ((signed-byte 64) 8 sap head) + (signed-sap-ref-64 sap head))) ;;; Find an input routine to use given the type. Return as multiple ;;; values the routine, the real type transfered, and the number of diff --git a/version.lisp-expr b/version.lisp-expr index 3be8885..e79fe37 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.18.25" +"0.9.18.26" -- 1.7.10.4