diff options
author | Richard Henderson <rth@redhat.com> | 2002-11-26 18:47:44 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-11-26 18:47:44 -0800 |
commit | 7b1bd3c534986f4ceffcdc726e83cb668293d39e (patch) | |
tree | ac42a4633b86b62e66e20e713a5d8c2dcb04f129 /gcc/target-def.h | |
parent | 44571d6e4642d00a7adeb9564c838ac500eeabbc (diff) | |
download | gcc-7b1bd3c534986f4ceffcdc726e83cb668293d39e.zip gcc-7b1bd3c534986f4ceffcdc726e83cb668293d39e.tar.gz gcc-7b1bd3c534986f4ceffcdc726e83cb668293d39e.tar.bz2 |
hooks.c (hook_bool_void_false, [...]): Rename so that the return type is first.
* hooks.c (hook_bool_void_false, hook_void_tree_int,
hook_void_FILEptr_constcharptr): Rename so that the return
type is first.
(hook_int_tree_tree_1, hook_void_tree, hook_void_tree_treeptr,
hook_bool_tree_false): New.
* hooks.h: Update.
* langhooks-def.h: Update for renames.
* target-def.h: Likewise.
* tree.c (default_comp_type_attributes,
default_set_default_type_attributes, default_insert_attributes,
default_function_attribute_inlinable_p,
default_ms_bitfield_layout_p): Remove.
* tree.h: Update.
From-SVN: r59556
Diffstat (limited to 'gcc/target-def.h')
-rw-r--r-- | gcc/target-def.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/target-def.h b/gcc/target-def.h index 46bc4a2..b866c85 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -221,11 +221,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define TARGET_MERGE_DECL_ATTRIBUTES merge_decl_attributes #define TARGET_MERGE_TYPE_ATTRIBUTES merge_type_attributes #define TARGET_ATTRIBUTE_TABLE NULL -#define TARGET_COMP_TYPE_ATTRIBUTES default_comp_type_attributes -#define TARGET_SET_DEFAULT_TYPE_ATTRIBUTES default_set_default_type_attributes -#define TARGET_INSERT_ATTRIBUTES default_insert_attributes -#define TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P default_function_attribute_inlinable_p -#define TARGET_MS_BITFIELD_LAYOUT_P default_ms_bitfield_layout_p /* In builtins.c. */ #define TARGET_INIT_BUILTINS default_init_builtins @@ -245,14 +240,19 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #endif /* In hook.c. */ -#define TARGET_CANNOT_MODIFY_JUMPS_P hook_void_bool_false +#define TARGET_CANNOT_MODIFY_JUMPS_P hook_bool_void_false +#define TARGET_COMP_TYPE_ATTRIBUTES hook_int_tree_tree_1 +#define TARGET_SET_DEFAULT_TYPE_ATTRIBUTES hook_void_tree +#define TARGET_INSERT_ATTRIBUTES hook_void_tree_treeptr +#define TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P hook_bool_tree_false +#define TARGET_MS_BITFIELD_LAYOUT_P hook_bool_tree_false #ifndef TARGET_IN_SMALL_DATA_P -#define TARGET_IN_SMALL_DATA_P hook_tree_bool_false +#define TARGET_IN_SMALL_DATA_P hook_bool_tree_false #endif #ifndef TARGET_ENCODE_SECTION_INFO -#define TARGET_ENCODE_SECTION_INFO hook_tree_int_void +#define TARGET_ENCODE_SECTION_INFO hook_void_tree_int #endif /* The whole shebang. */ |