aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-03-10 19:19:04 -0800
committerRichard Henderson <rth@gcc.gnu.org>2004-03-10 19:19:04 -0800
commit4d0c31e68cc2a1c3d39c7d51d2af9cd3d5c1784f (patch)
tree1bfb02abe9d554906754df59966f7f6a0f7158fc /gcc/hooks.c
parent20475e78e413a8a3327022a0b88da88b55819842 (diff)
downloadgcc-4d0c31e68cc2a1c3d39c7d51d2af9cd3d5c1784f.zip
gcc-4d0c31e68cc2a1c3d39c7d51d2af9cd3d5c1784f.tar.gz
gcc-4d0c31e68cc2a1c3d39c7d51d2af9cd3d5c1784f.tar.bz2
c-pch.c (c_common_no_more_pch): Update for gt_pch_use_address extra arguments.
* c-pch.c (c_common_no_more_pch): Update for gt_pch_use_address extra arguments. * config.host (*-*-solaris2*, *-*-linux*): Add out_host_hook_obj and host_xmake_file fragments. * ggc-common.c (gt_pch_save): Update for gt_pch_get_address change. (gt_pch_restore): Similarly for gt_pch_use_address. (default_gt_pch_get_address): New. (mmap_gt_pch_get_address): Split out of gt_pch_save. (default_gt_pch_use_address): Split out of gt_pch_restore. (mmap_gt_pch_use_address): Likewise. * hooks.c (hook_voidp_size_t_null): Remove. (hook_bool_voidp_size_t_false): Remove. * hooks.h: Likewise. * hosthooks-def.h (HOST_HOOKS_GT_PCH_GET_ADDRESS): Use one of the default_ or mmap_ definitions. (HOST_HOOKS_GT_PCH_USE_ADDRESS): Likewise. * hosthooks.h (struct host_hooks): Update gt_pch_get_address and gt_pch_use_address. * config/host-linux.c, config/host-solaris.c: New files. * config/x-linux, config/x-solaris: New files. * config/rs6000/host-darwin.c darwin_rs6000_gt_pch_get_address): Update for changed definition. (darwin_rs6000_gt_pch_use_address): Likewise. * doc/hostconfig.texi: Update docs. From-SVN: r79295
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index cb6efd4..5b9bb65 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -205,21 +205,6 @@ hook_rtx_tree_int_null (tree a ATTRIBUTE_UNUSED, int b ATTRIBUTE_UNUSED)
return NULL;
}
-/* Generic hook that takes a size_t and returns NULL. */
-void *
-hook_voidp_size_t_null (size_t a ATTRIBUTE_UNUSED)
-{
- return NULL;
-}
-
-/* Generic hook that takes a size_t and a pointer and returns false. */
-bool
-hook_bool_voidp_size_t_false (void * a ATTRIBUTE_UNUSED,
- size_t b ATTRIBUTE_UNUSED)
-{
- return false;
-}
-
/* Generic hook that takes a tree and returns it as is. */
tree
hook_tree_tree_identity (tree a)