From 73ff3c78497393a1c0e7f37bdf84eb9ad83cbbeb Mon Sep 17 00:00:00 2001 From: ch <ch> Date: Sun, 25 Feb 1990 19:51:00 +0000 Subject: [PATCH] Minor frob to type checking macros to prevent spurious warnings. --- compiler/mips/macros.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/mips/macros.lisp b/compiler/mips/macros.lisp index 5ab32afa0..1d9ba52f3 100644 --- a/compiler/mips/macros.lisp +++ b/compiler/mips/macros.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.16 1990/02/25 02:39:32 ch Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.17 1990/02/25 19:51:00 ch Exp $ ;;; ;;; This file contains various useful macros for generating MIPS code. ;;; @@ -246,7 +246,8 @@ `(let* ((drop-through (gen-label)) (,in-label (if ,not-p drop-through ,target)) (,out-label (if ,not-p ,target drop-through))) - ,out-label ; squelch possible warning + ,in-label ; squelch possible warning + ,out-label (unless (zerop ,tag-mask) (inst andi ,temp ,register ,tag-mask)) ,@(emit) -- GitLab