diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-23 19:15:36 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-23 19:15:36 +0000 |
commit | 8dae1bd3509174539d12da6ed571fd6a62ba73f6 (patch) | |
tree | e19856a202d1f98cbac615f425d8ef7027020630 /gcc/c-common.c | |
parent | 0b8be2906fb89957f5ad3a86999353f9dc787ffc (diff) | |
download | gcc-8dae1bd3509174539d12da6ed571fd6a62ba73f6.tar.gz |
* c-common.c (explicit_flag_signed_bitfields,
lang_statement_code_p, lang_expand_function_end): Remove.
* c-common.h: Remove the corresponding declarations.
* c-opts.c (c_common_handle_option): Remove all write access
to explicit_flag_signed_bitfields.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94120 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 8f2c9cb29a7..af1d8286177 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -269,7 +269,6 @@ int flag_const_strings; /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */ int flag_signed_bitfields = 1; -int explicit_flag_signed_bitfields; /* Nonzero means warn about deprecated conversion from string constant to `char *'. */ @@ -483,14 +482,6 @@ tree *ridpointers; tree (*make_fname_decl) (tree, int); -/* If non-NULL, the address of a language-specific function that - returns 1 for language-specific statement codes. */ -int (*lang_statement_code_p) (enum tree_code); - -/* If non-NULL, the address of a language-specific function that takes - any action required right before expand_function_end is called. */ -void (*lang_expand_function_end) (void); - /* Nonzero means the expression being parsed will never be evaluated. This is a count, since unevaluated expressions can nest. */ int skip_evaluation; |