From cd3ca5e87af22ada8ca4d1e52c57c166d8fb9f4a Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 8 Feb 1990 19:37:13 +0000 Subject: [PATCH] Fixed MOVE macro to check ALWAYS-EMIT-CODE-P at compile time. --- compiler/mips/macros.lisp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/compiler/mips/macros.lisp b/compiler/mips/macros.lisp index 274ad0f55..0a4a45d04 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.6 1990/02/06 23:26:24 ch Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.7 1990/02/08 19:37:13 wlott Exp $ ;;; ;;; This file contains various useful macros for generating MIPS code. ;;; @@ -25,8 +25,11 @@ is nil)." (once-only ((n-dst dst) (n-src src)) - `(unless (and (location= ,n-dst ,n-src) (not always-emit-code-p)) - (inst or ,n-dst ,n-src zero-tn)))) + (if always-emit-code-p + `(inst or ,n-dst ,n-src zero-tn) + `(unless (location= ,n-dst ,n-src) + (inst or ,n-dst ,n-src zero-tn))))) + (defmacro b (label) "Unconditional branch" -- GitLab