From 86bc055fa13b24a4a91d8ca95c2da11667b58f19 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 14 Mar 1991 09:31:32 +0000 Subject: [PATCH] Corrected error on NOCROSS --- lang/m2/comp/cstoper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/m2/comp/cstoper.c b/lang/m2/comp/cstoper.c index 30037dc0d..c7c1cdefd 100644 --- a/lang/m2/comp/cstoper.c +++ b/lang/m2/comp/cstoper.c @@ -38,9 +38,9 @@ arith min_int[MAXSIZE]; /* min_int[1] == 0xFFFFFF80, min_int[2] = 0xFFFF8000, */ unsigned int wrd_bits; /* number of bits in a word */ #else -arith full_mask[4] = { 0L, 0xFFL, 0xFFFFL, 0L, 0xFFFFFFFFL }; -arith max_int[4] = { 0L, 0x7FL, 0x7FFFL, 0L, 0x7FFFFFFFL }; -arith min_int[4] = { 0L, -128L, -32768L, 0L, -2147483647L-1 }; +arith full_mask[] = { 0L, 0xFFL, 0xFFFFL, 0L, 0xFFFFFFFFL }; +arith max_int[] = { 0L, 0x7FL, 0x7FFFL, 0L, 0x7FFFFFFFL }; +arith min_int[] = { 0L, -128L, -32768L, 0L, -2147483647L-1 }; #endif extern char options[]; -- 2.34.1