aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-15 05:31:44 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-15 05:31:44 +0000
commitb90f141a9d681c533c209813a6aa3f6dfce01b90 (patch)
tree598d296d7a51fac1c0dfb503e3b29e59338cf4a8 /gcc/function.c
parent89a68bb98de478df887df56cbd27119d28ffe957 (diff)
downloadgcc-b90f141a9d681c533c209813a6aa3f6dfce01b90.zip
gcc-b90f141a9d681c533c209813a6aa3f6dfce01b90.tar.gz
gcc-b90f141a9d681c533c209813a6aa3f6dfce01b90.tar.bz2
expr.c (expand_assignment): Remove an unused argument SUGGEST_REG.
* expr.c (expand_assignment): Remove an unused argument SUGGEST_REG. * expr.h: Update the prototype. * function.c: Update the callers. * stmt.c: Likewise. From-SVN: r69379
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 c3f4dc6..6124995 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -4832,7 +4832,7 @@ assign_parms (tree fndecl)
/* TREE_USED gets set erroneously during expand_assignment. */
save_tree_used = TREE_USED (parm);
expand_assignment (parm,
- make_tree (nominal_type, tempreg), 0, 0);
+ make_tree (nominal_type, tempreg), 0);
TREE_USED (parm) = save_tree_used;
conversion_insns = get_insns ();
did_conversion = 1;