diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2007-06-16 20:52:11 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2007-06-16 20:52:11 +0200 |
commit | cc2137be63a9fe19d4788f921a322d9b93410de0 (patch) | |
tree | c1464791ad2a64bbc18e95aec05c332b45c31f18 /gcc/hooks.c | |
parent | 71995ede980910b2abd7b4aa039be294abdc7a97 (diff) | |
download | gcc-cc2137be63a9fe19d4788f921a322d9b93410de0.zip gcc-cc2137be63a9fe19d4788f921a322d9b93410de0.tar.gz gcc-cc2137be63a9fe19d4788f921a322d9b93410de0.tar.bz2 |
targhooks.c (default_builtin_reciprocal): New default target hook.
* targhooks.c (default_builtin_reciprocal): New default target hook.
* targhooks.h (default_builtin_reciprocal): Add prototype.
* hooks.c (hook_tree_tree_bool_null): Remove hook.
* hooks.h (hook_tree_tree_bool_null): Remove prototype.
* target-def.h (TARGET_BUILTIN_RECIPROCAL): Define as
default_builtin_reciprocal.
From-SVN: r125758
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 4c57a16..8c4150e 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -266,13 +266,6 @@ hook_constcharptr_tree_null (tree t ATTRIBUTE_UNUSED) } tree -hook_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, - bool ignore ATTRIBUTE_UNUSED) -{ - return NULL; -} - -tree hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, tree t1 ATTRIBUTE_UNUSED, bool ignore ATTRIBUTE_UNUSED) |