diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-14 17:05:03 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-09-14 17:05:03 -0400 |
commit | 1e9b6647134042d52de4f879f6e7ea36fd85833d (patch) | |
tree | 13b1969611bf80e32c4ff5adfb10240d59a7b6e5 /gcc | |
parent | 8c9be4475d5b32279c1e1ac6e10887736eded457 (diff) | |
download | gcc-1e9b6647134042d52de4f879f6e7ea36fd85833d.zip gcc-1e9b6647134042d52de4f879f6e7ea36fd85833d.tar.gz gcc-1e9b6647134042d52de4f879f6e7ea36fd85833d.tar.bz2 |
(CHECK_STACK_LIMIT): Make consistent with MD file.
From-SVN: r12711
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/cygwin32.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/gcc/config/i386/cygwin32.h b/gcc/config/i386/cygwin32.h index 926be37..27a6482 100644 --- a/gcc/config/i386/cygwin32.h +++ b/gcc/config/i386/cygwin32.h @@ -1,11 +1,8 @@ /* Operating system specific defines to be used when targeting GCC for - hosting on Windows NT 3.x, using a unix style C library and tools. - - This is different to the winnt.h file, since that is used - to build GCC for use with a windows style library and tool - set, winnt.h uses the Microsoft tools to do that. - - Copyright (C) 1995 Free Software Foundation, Inc. + hosting on Windows NT 3.x, using a Unix style C library and tools, + as distinct from winnt.h, which is used to build GCC for use with a + windows style library and tool set and uses the Microsoft tools. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. This file is part of GNU CC. @@ -147,12 +144,10 @@ do \ while (0) #endif -/* Emit code to check the stack when allocating more that 20 +/* Emit code to check the stack when allocating more that 4000 bytes in one go. */ -#define CHECK_STACK_LIMIT 20 - - +#define CHECK_STACK_LIMIT 4000 /* By default, target has a 80387, uses IEEE compatible arithmetic, and returns float values in the 387 and needs stack probes */ |