diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2008-09-09 08:56:58 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2008-09-09 08:56:58 +0000 |
commit | 0c03f46fcb7815e5da15a37abbbb8c40daa5cc48 (patch) | |
tree | 37848acf141412c81415c91c89ffd7eab8980776 /gcc/c-common.h | |
parent | 6efbd94a33a53ac4cb6d3c5585c27f529713b9bb (diff) | |
download | gcc-0c03f46fcb7815e5da15a37abbbb8c40daa5cc48.zip gcc-0c03f46fcb7815e5da15a37abbbb8c40daa5cc48.tar.gz gcc-0c03f46fcb7815e5da15a37abbbb8c40daa5cc48.tar.bz2 |
c-common.c (c_expand_decl): Remove.
2008-09-09 Paolo Bonzini <bonzini@gnu.org>
* c-common.c (c_expand_decl): Remove.
* c-common.h (anon_aggr_type_p): Remove prototype.
(DECL_ANON_UNION_ELEMS): Remove.
* c-objc-common.h (LANG_HOOKS_EXPAND_DECL): Remove.
* c-decl.c (anon_aggr_type_p): Remove.
* langhooks-def.h (LANG_HOOKS_EXPAND_DECL): Remove.
(LANG_HOOKS_INITIALIZER): Remove LANG_HOOKS_EXPAND_DECL.
* langhooks.h (struct lang_hooks): Remove expand_decl.
* langhooks.c (lhd_expand_decl): Remove.
* stmt.c (expand_anon_union_decl): Remove.
* tree.h (expand_anon_union_decl): Remove prototype.
cp:
2008-09-09 Paolo Bonzini <bonzini@gnu.org>
* cp-objcp-common.h (LANG_HOOKS_EXPAND_DECL): Remove.
* cp-tree.h: Don't mention DECL_ANON_UNION_ELEMS.
* semantics.c (anon_aggr_type_p): Remove.
From-SVN: r140138
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index d6f8d05..96c5fa0 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -800,12 +800,6 @@ extern void finish_file (void); #define COMPOUND_LITERAL_EXPR_DECL(NODE) \ DECL_EXPR_DECL (COMPOUND_LITERAL_EXPR_DECL_STMT (NODE)) -extern int anon_aggr_type_p (const_tree); - -/* For a VAR_DECL that is an anonymous union, these are the various - sub-variables that make up the anonymous union. */ -#define DECL_ANON_UNION_ELEMS(NODE) DECL_ARGUMENTS ((NODE)) - /* In a FIELD_DECL, nonzero if the decl was originally a bitfield. */ #define DECL_C_BIT_FIELD(NODE) \ (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) == 1) |