From c0b6bb5c0bd51617f50dab39ba91da564add4dd8 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 25 Apr 1990 21:47:10 +0000 Subject: [PATCH] Removed a random node var that got left behind. --- compiler/mips/system.lisp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp index b1757ee2e..085d6196a 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.9 1990/04/24 02:56:44 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.10 1990/04/25 21:47:10 wlott Exp $ ;;; ;;; MIPS VM definitions of various system hacking operations. ;;; @@ -51,10 +51,9 @@ (y :scs (any-reg descriptor-reg))) (:temporary (:type random :scs (non-descriptor-reg)) temp) (:variant-vars condition not-p error) - (:node-var node) (:policy :fast-safe) (:generator 3 - (let ((target (generate-error-code node error x y))) + (let ((target (generate-error-code error x y))) (three-way-comparison x y condition :signed not-p target temp)))) (define-vop (check<= check-op) -- GitLab