aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-02-19 11:06:26 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-02-19 11:06:26 +0000
commit45ea6431a0b913a00fbf28685824993e73c81756 (patch)
treeee9485e15b966266d2907c08b8e4331026f82493 /gcc/targhooks.c
parentc59102b4ae4423568d8eaba2e7d8c665c5aeb5af (diff)
downloadgcc-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/targhooks.c')
-rw-r--r--gcc/targhooks.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index a2c8273..03735a6 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -126,11 +126,3 @@ hook_bool_CUMULATIVE_ARGS_true (CUMULATIVE_ARGS * a ATTRIBUTE_UNUSED)
{
return true;
}
-
-/* Generic hook that takes a machine mode and returns true. */
-
-bool
-hook_bool_machine_mode_true (enum machine_mode a ATTRIBUTE_UNUSED)
-{
- return true;
-}