diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-19 11:06:26 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-19 11:06:26 +0000 |
commit | 45ea6431a0b913a00fbf28685824993e73c81756 (patch) | |
tree | ee9485e15b966266d2907c08b8e4331026f82493 /gcc/hooks.h | |
parent | c59102b4ae4423568d8eaba2e7d8c665c5aeb5af (diff) | |
download | gcc-45ea6431a0b913a00fbf28685824993e73c81756.zip gcc-45ea6431a0b913a00fbf28685824993e73c81756.tar.gz gcc-45ea6431a0b913a00fbf28685824993e73c81756.tar.bz2 |
hooks.c (hook_void_tree_int): Remove.
* 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.
From-SVN: r78093
Diffstat (limited to 'gcc/hooks.h')
-rw-r--r-- | gcc/hooks.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h index 583b504..60355f5 100644 --- a/gcc/hooks.h +++ b/gcc/hooks.h @@ -35,16 +35,13 @@ extern bool hook_bool_uintp_uintp_false (unsigned int *, unsigned int *); extern bool hook_bool_rtx_int_int_intp_false (rtx, int, int, int *); extern bool hook_bool_constcharptr_size_t_false (const char *, size_t); -extern void hook_void_tree_int (tree, int); extern void hook_void_void (void); extern void hook_void_FILEptr_constcharptr (FILE *, const char *); extern void hook_void_tree (tree); extern void hook_void_tree_treeptr (tree, tree *); -extern void hook_void_constcharptr (const char *); extern int hook_int_tree_tree_1 (tree, tree); extern int hook_int_rtx_0 (rtx); -extern int hook_int_void_0 (void); extern int hook_int_size_t_constcharptr_int_0 (size_t, const char *, int); extern int hook_int_void_no_regs (void); |