diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-09 21:42:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-09 21:42:32 +0000 |
commit | 603733766c669f42cc46cca4dcbceb3aa563b98b (patch) | |
tree | 59db233cd3f2f43c4e224e9c6af5dca43d70ff81 /contrib | |
parent | 65d1b51533ea2f08a2c426134353cdb510ad2757 (diff) | |
download | FreeBSD-src-603733766c669f42cc46cca4dcbceb3aa563b98b.zip FreeBSD-src-603733766c669f42cc46cca4dcbceb3aa563b98b.tar.gz |
Use the stock 3.1 prerelease version of this for now.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/flags.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/gcc/flags.h b/contrib/gcc/flags.h index ab449fb..d402ec8 100644 --- a/contrib/gcc/flags.h +++ b/contrib/gcc/flags.h @@ -19,11 +19,11 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* $FreeBSD$ */ + #ifndef GCC_FLAGS_H #define GCC_FLAGS_H -/* $FreeBSD$ */ - /* Name of the input .c file being compiled. */ extern const char *main_input_filename; @@ -382,6 +382,11 @@ extern int flag_keep_inline_functions; extern int flag_no_inline; +/* Nonzero means that we don't want inlining by virtue of -fno-inline, + not just because the tree inliner turned us off. */ + +extern int flag_really_no_inline; + /* Nonzero if we are only using compiler to check syntax errors. */ extern int flag_syntax_only; |