diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-01-23 19:15:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-01-23 19:15:36 +0000 |
commit | f3b303fd7fe07164a507fc4d151a32c05a341fe0 (patch) | |
tree | e19856a202d1f98cbac615f425d8ef7027020630 /gcc/c-common.h | |
parent | d0754bc6fcdfb0504f07799bf7cc04c6549e317b (diff) | |
download | gcc-f3b303fd7fe07164a507fc4d151a32c05a341fe0.zip gcc-f3b303fd7fe07164a507fc4d151a32c05a341fe0.tar.gz gcc-f3b303fd7fe07164a507fc4d151a32c05a341fe0.tar.bz2 |
c-common.c (explicit_flag_signed_bitfields, [...]): Remove.
* 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.
From-SVN: r94120
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 1a3f551..d9fcfbb 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -280,8 +280,6 @@ struct c_language_function GTY(()) { /* Language-specific hooks. */ -extern void (*lang_expand_function_end) (void); - /* Callback that determines if it's ok for a function to have no noreturn attribute. */ extern int (*lang_missing_noreturn_ok_p) (tree); @@ -403,7 +401,6 @@ extern int flag_const_strings; /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */ extern int flag_signed_bitfields; -extern int explicit_flag_signed_bitfields; /* Nonzero means warn about deprecated conversion from string constant to `char *'. */ |