diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-19 14:43:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-19 14:43:56 +0000 |
commit | e836a5a26a9e40de2a2d5c07266c0f8321c5532c (patch) | |
tree | 8970f72664157fabb5e8b9eb68f1275e2bd0dd35 /gcc/stmt.c | |
parent | 88e9994a469cdf817b269128cc5cb18046ed533d (diff) | |
download | gcc-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/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1108,7 +1108,7 @@ expand_asm_expr (tree exp) { if (o[i] != TREE_VALUE (tail)) { - expand_assignment (o[i], TREE_VALUE (tail), 0); + expand_assignment (o[i], TREE_VALUE (tail)); free_temp_slots (); /* Restore the original value so that it's correct the next |