From e20c331ef1b106f6e15db332961f494286d9deea Mon Sep 17 00:00:00 2001 From: Stephen Adams Date: Wed, 16 Jul 1997 02:51:07 +0000 Subject: [PATCH] Conditionalize fixnum dependency for allow single file for 7.4 and 8.0 --- v7/src/microcode/uxtrap.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/uxtrap.c b/v7/src/microcode/uxtrap.c index 44b100b89..17fed9527 100644 --- a/v7/src/microcode/uxtrap.c +++ b/v7/src/microcode/uxtrap.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: uxtrap.c,v 1.26 1995/07/27 00:35:24 adams Exp $ +$Id: uxtrap.c,v 1.27 1997/07/16 02:51:07 adams Exp $ Copyright (c) 1990-1993 Massachusetts Institute of Technology @@ -746,7 +746,13 @@ DEFUN (find_block_address_in_area, (pc_value, area_start), return (((area == first_valid) || (((OBJECT_TYPE (*block)) != TC_MANIFEST_VECTOR) - && ((OBJECT_TYPE (*block)) != TC_POSITIVE_FIXNUM)) + && ((OBJECT_TYPE (*block)) != +#ifdef TC_POSITIVE_FIXNUM + TC_POSITIVE_FIXNUM +#else + TC_FIXNUM +#endif + )) || ((OBJECT_DATUM (*block)) < (count + 1)) || (! (PLAUSIBLE_CC_BLOCK_P (block)))) -- 2.25.1