diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-17 15:25:20 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-07-17 15:25:20 +0000 |
commit | f345c71efe4f07513a875fd33ec4c5e75caba793 (patch) | |
tree | a9bfaced5ec3551d5e94be932debd8a64b9f259e /gcc/flags.h | |
parent | aa4e8f9e303d1ba2b2edaab23003e9bb2ecbb1d0 (diff) | |
download | gcc-f345c71efe4f07513a875fd33ec4c5e75caba793.tar.gz |
(flag_stack_check): New declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14468 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index f9b11dd6494..21eaed39dff 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -1,5 +1,5 @@ /* Compilation switch flag definitions for GNU CC. - Copyright (C) 1987, 1988, 1994, 1995, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1987, 88, 94, 95, 96, 1997 Free Software Foundation, Inc. This file is part of GNU CC. @@ -369,6 +369,10 @@ extern int flag_gnu_linker; /* Tag all structures with __attribute__(packed) */ extern int flag_pack_struct; + +/* Emit code to check for stack overflow; also may cause large objects + to be allocated dynamically. */ +extern int flag_stack_check; /* Other basic status info about current function. */ |