From 0ab8af67b59232e33c0a0b399222f68dd9134b10 Mon Sep 17 00:00:00 2001 From: kazu Date: Sun, 20 Mar 2005 15:54:41 +0000 Subject: * builtins.c (fold_builtin_1): Update a call to targetm.fold_builtin. * hooks.c (hook_tree_tree_bool_null): Rename to hook_tree_tree_tree_bool_null. Take one more argument of type tree. * hooks.h: Update the prototype of hook_tree_tree_bool_null. * target-def.h (TARGET_FOLD_BUILTIN): Define it as hook_tree_tree_tree_bool_null. * target.h (gcc_target): Update the prototype of fold_builtin. * config/alpha/alpha.c (alpha_fold_builtin): Take decomposed arguments of CALL_EXPR. * doc/tm.texi (TARGET_FOLD_BUILTIN): Update. Mention the new prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96762 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/hooks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/hooks.c') diff --git a/gcc/hooks.c b/gcc/hooks.c index 471901f303d..274d427a931 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -243,7 +243,8 @@ hook_constcharptr_tree_null (tree t ATTRIBUTE_UNUSED) } tree -hook_tree_tree_bool_null (tree t ATTRIBUTE_UNUSED, bool ignore ATTRIBUTE_UNUSED) +hook_tree_tree_tree_bool_null (tree t0 ATTRIBUTE_UNUSED, tree t1 ATTRIBUTE_UNUSED, + bool ignore ATTRIBUTE_UNUSED) { return NULL; } -- cgit v1.2.1