Skip to content
Snippets Groups Projects
Commit a4f4c83b authored by wlott's avatar wlott
Browse files

Fixed the sense of check<= and check=.

parent 0a6b8c12
No related branches found
No related tags found
No related merge requests found
......@@ -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))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment