diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-16 14:45:15 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-16 14:45:15 +0000 |
commit | a456b43276bbf9bd23b670ac4a334d1c926090b0 (patch) | |
tree | b1880a3e893b0506033714b4206841e710dcc5ea /gcc/tree.h | |
parent | 00c714edd62e0bb54959ecde206eba8722d6735a (diff) | |
download | gcc-a456b43276bbf9bd23b670ac4a334d1c926090b0.zip gcc-a456b43276bbf9bd23b670ac4a334d1c926090b0.tar.gz gcc-a456b43276bbf9bd23b670ac4a334d1c926090b0.tar.bz2 |
builtins.c (expand_movstr): Update a call to fold_builtin_strcpy.
* builtins.c (expand_movstr): Update a call to
fold_builtin_strcpy.
(expand_builtin_strncpy): Update a call to
fold_builtin_strncpy.
(fold_builtin_strcpy, fold_builtin_strncpy): Take decomosed
arguments of CALL_EXPR.
(fold_builtin_1): Update calls to fold_builtin_strcpy and
fold_builtin_strncpy.
* tree-ssa-ccp.c (ccp_fold_builtin): Likewise.
* tree.h: Update the prototypes of fold_builtin_strcpy and
fold_builtin_strncpy.
From-SVN: r96555
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3565,8 +3565,8 @@ extern bool ptr_difference_const (tree, tree, HOST_WIDE_INT *); /* In builtins.c */ extern tree fold_builtin (tree, bool); extern tree fold_builtin_fputs (tree, bool, bool, tree); -extern tree fold_builtin_strcpy (tree, tree); -extern tree fold_builtin_strncpy (tree, tree); +extern tree fold_builtin_strcpy (tree, tree, tree); +extern tree fold_builtin_strncpy (tree, tree, tree); extern bool fold_builtin_next_arg (tree); extern enum built_in_function builtin_mathfn_code (tree); extern tree build_function_call_expr (tree, tree); |