summaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-19 14:43:56 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-19 14:43:56 +0000
commit5d3c08940ad6b3bf8b81878571c019dbf3836777 (patch)
tree8970f72664157fabb5e8b9eb68f1275e2bd0dd35 /gcc/expr.h
parent2c95e9b14ca84f5feaeaadee676ee04ef5922e44 (diff)
downloadgcc-5d3c08940ad6b3bf8b81878571c019dbf3836777.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89275 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index dc66239f240..54b04c2eb60 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -466,7 +466,7 @@ extern void emit_push_insn (rtx, enum machine_mode, tree, rtx, unsigned int,
int, rtx, int, rtx, rtx, int, rtx);
/* Expand an assignment that stores the value of FROM into TO. */
-extern rtx expand_assignment (tree, tree, int);
+extern void expand_assignment (tree, tree);
/* Generate code for computing expression EXP,
and storing the value into TARGET.