From b38fed697fd44fc3ead3585ded10cb0c21b3c896 Mon Sep 17 00:00:00 2001 From: pmai <pmai> Date: Thu, 29 Nov 2001 16:45:35 +0000 Subject: [PATCH] DTC's fix for catch failing to accept immediate tags, like fixnums and characters. --- compiler/x86/nlx.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/x86/nlx.lisp b/compiler/x86/nlx.lisp index bd9266d5f..48c54c5d8 100644 --- a/compiler/x86/nlx.lisp +++ b/compiler/x86/nlx.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/nlx.lisp,v 1.13 1999/12/04 16:06:08 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/nlx.lisp,v 1.14 2001/11/29 16:45:35 pmai Exp $") ;;; ;;; ********************************************************************** ;;; @@ -116,7 +116,7 @@ (define-vop (make-catch-block) (:args (tn) - (tag :scs (descriptor-reg) :to (:result 1))) + (tag :scs (descriptor-reg any-reg) :to (:result 1))) (:info entry-label) (:results (block :scs (any-reg))) (:temporary (:sc descriptor-reg) temp) -- GitLab