diff --git a/compiler/ppc/c-call.lisp b/compiler/ppc/c-call.lisp index c765ee73f5a7329aaaef48517b5df299a7d21d4e..2f52b9e2dc5846fd9bef9e46fe20507707189e8c 100644 --- a/compiler/ppc/c-call.lisp +++ b/compiler/ppc/c-call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/c-call.lisp,v 1.17 2005/11/20 03:17:41 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/c-call.lisp,v 1.18 2005/11/29 14:25:46 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -387,12 +387,14 @@ (alien::integer-64$ ;; Get both words of a 64-bit integer and combine together, in ;; a big-endian fashion. - `(let ((hi (alien:deref (sap-alien (sys:sap+ ,sp ,offset) - (* c-call:int)))) - (lo (alien:deref (sap-alien (sys:sap+ ,sp - (+ ,offset vm:word-bytes)) - (* c-call:unsigned-int))))) - (+ (ash hi vm:word-bits) lo))) + `(let* ((hi (alien:deref (sap-alien (sys:sap+ ,sp ,offset) + ,(if (alien-integer-type-signed parsed-type) + '(* c-call:int) + '(* c-call:unsigned-int))))) + (lo (alien:deref (sap-alien (sys:sap+ ,sp + (+ ,offset vm:word-bytes)) + (* c-call:unsigned-int))))) + (+ (ash hi vm:word-bits) lo))) (alien::integer$ ;; We can access machine integers directly, but we need to get ;; the offset right, since the offset we're given is the start