diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-19 16:23:27 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-19 16:23:27 +0000 |
commit | 97d6714632dc69c9f1341966666a141497221d24 (patch) | |
tree | f15a40f5a1f4ab9b11dec139b4555f2ba5f385f7 /gcc/target-def.h | |
parent | 4e7c6e48dfe17ad5b13cb03d56db746892ec0458 (diff) | |
download | gcc-97d6714632dc69c9f1341966666a141497221d24.tar.gz |
* hooks.h (hook_tree_tree_tree_bool_null): Rename to...
(hook_tree_tree_int_treep_bool_null): ...this. Update signature.
* hooks.c: Likewise.
* target-def.h (TARGET_FOLD_BUILTIN): Define to
hook_tree_tree_int_treep_bool_null.
* target.h: (struct gcc_target): Update signature of fold_builtin
field.
* doc/tm.texi (TARGET_FOLD_BUILTIN): Update description and signature.
* builtins.c (fold_call_expr): Pass call_expr_nargs and CALL_EXPR_ARGP
instead of the call expression.
(fold_builtin_call_array): Pass n and argarray directly.
(fold_call_stmt): Pass nargs and gimple_call_arg_ptr instead of
consing a list.
* config/alpha/alpha.c (alpha_fold_builtin): Update signature. Lift
MAX_ARGS check out of the loop. Delete declaration of `arity', declare
`i' and use it in place of `arity'.
* config/sparc/sparc.c (sparc_fold_builtin): Update signature.
Dereference `args' directly.
* config/xtensa/xtensa (xtensa_fold_builtin): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159585 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/target-def.h')
-rw-r--r-- | gcc/target-def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/target-def.h b/gcc/target-def.h index 3ead3702047..09da722b8d9 100644 --- a/gcc/target-def.h +++ b/gcc/target-def.h @@ -456,7 +456,7 @@ #define TARGET_INIT_BUILTINS hook_void_void #define TARGET_EXPAND_BUILTIN default_expand_builtin #define TARGET_RESOLVE_OVERLOADED_BUILTIN NULL -#define TARGET_FOLD_BUILTIN hook_tree_tree_tree_bool_null +#define TARGET_FOLD_BUILTIN hook_tree_tree_int_treep_bool_null #define TARGET_BUILTIN_DECL NULL /* In tree-ssa-math-opts.c */ |