aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-19 14:43:56 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-19 14:43:56 +0000
commite836a5a26a9e40de2a2d5c07266c0f8321c5532c (patch)
tree8970f72664157fabb5e8b9eb68f1275e2bd0dd35 /gcc/function.c
parent88e9994a469cdf817b269128cc5cb18046ed533d (diff)
downloadgcc-e836a5a26a9e40de2a2d5c07266c0f8321c5532c.zip
gcc-e836a5a26a9e40de2a2d5c07266c0f8321c5532c.tar.gz
gcc-e836a5a26a9e40de2a2d5c07266c0f8321c5532c.tar.bz2
expr.c (expand_assignment): Remove the last argument.
* expr.c (expand_assignment): Remove the last argument. Change the return type to void. * expr.h: Update the prototype of expand_assignment. * function.c (assign_parm_setup_reg): Update a call to expand_assignment. * stmt.c (expand_asm_expr): Likewise. From-SVN: r89275
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 8d6f8fb..d6fe2f5 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -2730,7 +2730,7 @@ assign_parm_setup_reg (struct assign_parm_data_all *all, tree parm,
/* TREE_USED gets set erroneously during expand_assignment. */
save_tree_used = TREE_USED (parm);
- expand_assignment (parm, make_tree (data->nominal_type, tempreg), 0);
+ expand_assignment (parm, make_tree (data->nominal_type, tempreg));
TREE_USED (parm) = save_tree_used;
all->conversion_insns = get_insns ();
end_sequence ();