diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-19 11:06:26 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-02-19 11:06:26 +0000 |
commit | aab59902c1fbd410fc286316ffc2033e49aa03de (patch) | |
tree | ee9485e15b966266d2907c08b8e4331026f82493 /gcc/hooks.c | |
parent | 1c4e8019d4e8706b97f557972de25fb881683e62 (diff) | |
download | gcc-aab59902c1fbd410fc286316ffc2033e49aa03de.tar.gz |
* hooks.c (hook_void_tree_int): Remove.
(hook_void_constcharptr): Likewise.
(hook_int_void_0): Likewise.
* hooks.h: Remove the prototypes for the above three
functions.
* targhooks.c (hook_bool_machine_mode_true): Remove.
* targhooks.h: Remove the prototype for
hook_bool_machine_mode_true.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78093 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index a8cd665a45f..090a45aba29 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -55,24 +55,12 @@ hook_bool_bool_false (bool a ATTRIBUTE_UNUSED) return false; } - -/* Generic hook that takes (tree, int) and does nothing. */ -void -hook_void_tree_int (tree a ATTRIBUTE_UNUSED, int b ATTRIBUTE_UNUSED) -{ -} - /* Generic hook that takes (FILE *, const char *) and does nothing. */ void hook_void_FILEptr_constcharptr (FILE *a ATTRIBUTE_UNUSED, const char *b ATTRIBUTE_UNUSED) { } -void -hook_void_constcharptr (const char *a ATTRIBUTE_UNUSED) -{ -} - /* Used for the TARGET_ASM_CAN_OUTPUT_MI_THUNK hook. */ bool hook_bool_tree_hwi_hwi_tree_false (tree a ATTRIBUTE_UNUSED, @@ -122,12 +110,6 @@ hook_int_rtx_0 (rtx a ATTRIBUTE_UNUSED) } int -hook_int_void_0 (void) -{ - return 0; -} - -int hook_int_size_t_constcharptr_int_0 (size_t a ATTRIBUTE_UNUSED, const char *b ATTRIBUTE_UNUSED, int c ATTRIBUTE_UNUSED) |