From 5d3c08940ad6b3bf8b81878571c019dbf3836777 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 19 Oct 2004 14:43:56 +0000 Subject: * 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 --- gcc/stmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/stmt.c') diff --git a/gcc/stmt.c b/gcc/stmt.c index a9bb3e6682a..38646a35459 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -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 -- cgit v1.2.1