From 71a07bb49e860911beeaca0724f99b93b8db8e04 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Tue, 5 May 1992 02:25:04 +0000 Subject: [PATCH] DOS/386 changes: The 386 needs a larger default constant space. --- v7/src/microcode/option.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/v7/src/microcode/option.c b/v7/src/microcode/option.c index 77bf79b00..be05a34b3 100644 --- a/v7/src/microcode/option.c +++ b/v7/src/microcode/option.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/option.c,v 1.15 1992/05/04 20:41:27 jinx Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/option.c,v 1.16 1992/05/05 02:25:04 jinx Exp $ Copyright (c) 1990-1992 Massachusetts Institute of Technology @@ -338,6 +338,19 @@ The following options are only meaningful to bchscheme: #endif /* mips */ +#ifdef i386 +/* 386 code is large too! */ + +#ifndef DEFAULT_SMALL_CONSTANT +#define DEFAULT_SMALL_CONSTANT 420 +#endif + +#ifndef DEFAULT_LARGE_CONSTANT +#define DEFAULT_LARGE_CONSTANT 1000 +#endif + +#endif /* i386 */ + #endif /* HAS_COMPILER_SUPPORT */ #ifndef DEFAULT_SMALL_HEAP -- 2.25.1