From a4f4c83ba9a7b7c967af953c775aa3417cbd64ef Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 21 Jul 1990 16:17:24 +0000 Subject: [PATCH] Fixed the sense of check<= and check=. --- compiler/mips/system.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp index b1c44b6a6..6baa57661 100644 --- a/compiler/mips/system.lisp +++ b/compiler/mips/system.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.29 1990/07/13 12:01:36 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.30 1990/07/21 16:17:24 wlott Exp $ ;;; ;;; MIPS VM definitions of various system hacking operations. ;;; @@ -59,13 +59,13 @@ (:translate check<=) (:generator 3 (let ((target (generate-error-code vop not-<=-error x y))) - (three-way-comparison x y :gt :signed t target temp)))) + (three-way-comparison x y :gt :signed nil target temp)))) (define-vop (check= check-op) (:translate check=) (:generator 3 (let ((target (generate-error-code vop not-=-error x y))) - (three-way-comparison x y :eq :signed nil target temp)))) + (three-way-comparison x y :eq :signed t target temp)))) -- GitLab