diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-19 23:04:36 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-19 23:04:36 +0000 |
commit | a0d8c66de83965dee8f69670a1363f4f9c5a1fc4 (patch) | |
tree | 834cdfea4b4cd449e3fa6bf0ff16680067dece14 /gcc/langhooks-def.h | |
parent | abeb157a337a03b4d549367533a21d6a6f8aa312 (diff) | |
download | gcc-a0d8c66de83965dee8f69670a1363f4f9c5a1fc4.tar.gz |
Missed part of my patch:
* langhooks-def.h (lhd_decl_uninit): Declare.
(LANG_HOOKS_DECL_UNINIT): New macro.
(LANG_HOOKS_INITIALIZER): Adjust.
* langhooks.h (struct lang_hooks): Add new field
decl_uninit.
* langhooks.c (lhd_decl_uninit): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70580 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/langhooks-def.h')
-rw-r--r-- | gcc/langhooks-def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/langhooks-def.h b/gcc/langhooks-def.h index 7bbaea269e1..56c24c79739 100644 --- a/gcc/langhooks-def.h +++ b/gcc/langhooks-def.h @@ -63,6 +63,7 @@ extern void lhd_incomplete_type_error (tree, tree); extern tree lhd_type_promotes_to (tree); extern bool lhd_decl_ok_for_sibcall (tree); extern tree lhd_expr_size (tree); +extern bool lhd_decl_uninit (tree); extern size_t lhd_tree_size (enum tree_code); /* Declarations of default tree inlining hooks. */ @@ -114,6 +115,7 @@ extern void lhd_initialize_diagnostics (struct diagnostic_context *); #define LANG_HOOKS_PRINT_ERROR_FUNCTION lhd_print_error_function #define LANG_HOOKS_DECL_PRINTABLE_NAME lhd_decl_printable_name #define LANG_HOOKS_EXPR_SIZE lhd_expr_size +#define LANG_HOOKS_DECL_UNINIT lhd_decl_uninit #define LANG_HOOKS_TREE_SIZE lhd_tree_size #define LANG_HOOKS_FUNCTION_INIT lhd_do_nothing_f @@ -278,6 +280,7 @@ extern int lhd_tree_dump_type_quals (tree); LANG_HOOKS_DECL_PRINTABLE_NAME, \ LANG_HOOKS_PRINT_ERROR_FUNCTION, \ LANG_HOOKS_EXPR_SIZE, \ + LANG_HOOKS_DECL_UNINIT, \ LANG_HOOKS_ATTRIBUTE_TABLE, \ LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, \ LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, \ |