diff --git a/compiler/mips/arith.lisp b/compiler/mips/arith.lisp index 4da1eae4dd0cdea7e10f9ad4a6b9ba8c5c78ce02..a13add69ae4b4a347a509ccb0f4de3f14e30f60e 100644 --- a/compiler/mips/arith.lisp +++ b/compiler/mips/arith.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/arith.lisp,v 1.41 1991/02/11 16:09:29 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/arith.lisp,v 1.42 1991/02/20 14:43:08 ram Exp $ ;;; ;;; This file contains the VM definition arithmetic VOPs for the MIPS. ;;; @@ -429,7 +429,8 @@ (defmacro define-conditional-vop (translate &rest generator) ;; ;; Squelch dead-code notes... - `(locally (declare (optimize (inhibit-warnings 3))) + `(;locally (declare (optimize (inhibit-warnings 3))) + progn ; but not really, since that makes a big function, which doesn't load. ,@(mapcar #'(lambda (suffix cost signed) (unless (and (member suffix '(/fixnum -c/fixnum)) (eq translate 'eql))