diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-07 04:00:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-07 04:00:55 +0000 |
commit | cf4731bb9691ac811b381773c69dc72e001db6fa (patch) | |
tree | 2c6fe73ac1058b2f809da11565a3b4102953041f /gcc/hooks.c | |
parent | 0af923f587d901f674de98b7f93cf7f43ea370ff (diff) | |
download | gcc-cf4731bb9691ac811b381773c69dc72e001db6fa.tar.gz |
* hooks.c (hook_int_void_1, hook_void_int): Remove.
* hooks.h: Remove the corresponding prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88657 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 9470a4d84c6..d091583a2d3 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -55,13 +55,6 @@ hook_int_void_no_regs (void) return NO_REGS; } -/* Generic hook that returns 1. */ -int -hook_int_void_1 (void) -{ - return 1; -} - /* Generic hook that takes (bool) and returns false. */ bool hook_bool_bool_false (bool a ATTRIBUTE_UNUSED) @@ -152,11 +145,6 @@ hook_uint_uint_constcharptrptr_0 (unsigned int a ATTRIBUTE_UNUSED, } void -hook_void_int (int b ATTRIBUTE_UNUSED) -{ -} - -void hook_void_tree (tree a ATTRIBUTE_UNUSED) { } |