From 07e5550da96e66a6984ee036e30b3ac2dbb301be Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 29 Apr 1991 06:19:14 +0000 Subject: [PATCH] Added an extra reference to suppress a bound-but-not-used warning. --- compiler/rt/sap.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/rt/sap.lisp b/compiler/rt/sap.lisp index 47f4b5ca6..4b04b2e52 100644 --- a/compiler/rt/sap.lisp +++ b/compiler/rt/sap.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.4 1991/04/28 23:14:49 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.5 1991/04/29 06:19:14 wlott Exp $ ;;; ;;; This file contains the IBM RT VM definition of SAP operations. ;;; @@ -190,7 +190,8 @@ (inst lh result base offset)))) (2 ;Want 32 bits. Incoming offset is in 32-bit quantities. ;Offset here is in bytes. - '((inst l result base offset))))) + '(signed ; suppress silly warnings. + (inst l result base offset))))) (name-c (symbolicate name "-C"))) `(progn (define-vop (,name-c) -- GitLab