summaryrefslogtreecommitdiff
path: root/gcc/hooks.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-11-26 18:47:44 -0800
committerRichard Henderson <rth@gcc.gnu.org>2002-11-26 18:47:44 -0800
commit7b1bd3c534986f4ceffcdc726e83cb668293d39e (patch)
treeac42a4633b86b62e66e20e713a5d8c2dcb04f129 /gcc/hooks.h
parent44571d6e4642d00a7adeb9564c838ac500eeabbc (diff)
downloadgcc-7b1bd3c534986f4ceffcdc726e83cb668293d39e.tar.gz
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/hooks.h')
-rw-r--r--gcc/hooks.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h
index 34af50c6da2..4e09da932a3 100644
--- a/gcc/hooks.h
+++ b/gcc/hooks.h
@@ -22,16 +22,21 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef GCC_HOOKS_H
#define GCC_HOOKS_H
-bool hook_void_bool_false PARAMS ((void));
-bool hook_tree_bool_false PARAMS ((tree));
-void hook_tree_int_void PARAMS ((tree, int));
-void hook_void_void PARAMS ((void));
-void hook_FILEptr_constcharptr_void PARAMS ((FILE *, const char *));
+bool hook_bool_void_false PARAMS ((void));
+bool hook_bool_tree_false PARAMS ((tree));
bool hook_bool_tree_hwi_hwi_tree_false
PARAMS ((tree, HOST_WIDE_INT, HOST_WIDE_INT, tree));
bool hook_bool_tree_hwi_hwi_tree_true
PARAMS ((tree, HOST_WIDE_INT, HOST_WIDE_INT, tree));
+void hook_void_tree_int PARAMS ((tree, int));
+void hook_void_void PARAMS ((void));
+void hook_void_FILEptr_constcharptr PARAMS ((FILE *, const char *));
+void hook_void_tree PARAMS ((tree));
+void hook_void_tree_treeptr PARAMS ((tree, tree *));
+
+int hook_int_tree_tree_1 PARAMS ((tree, tree));
+
bool default_can_output_mi_thunk_no_vcall
PARAMS ((tree, HOST_WIDE_INT, HOST_WIDE_INT, tree));