aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.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/stmt.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/stmt.c')
-rw-r--r--gcc/stmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index a720691..e2b36b1 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -3984,13 +3984,13 @@ expand_decl_init (tree decl)
if (code == INTEGER_TYPE || code == REAL_TYPE || code == ENUMERAL_TYPE
|| code == POINTER_TYPE || code == REFERENCE_TYPE)
expand_assignment (decl, convert (TREE_TYPE (decl), integer_zero_node),
- 0, 0);
+ 0);
emit_queue ();
}
else if (DECL_INITIAL (decl) && TREE_CODE (DECL_INITIAL (decl)) != TREE_LIST)
{
emit_line_note (DECL_SOURCE_LOCATION (decl));
- expand_assignment (decl, DECL_INITIAL (decl), 0, 0);
+ expand_assignment (decl, DECL_INITIAL (decl), 0);
emit_queue ();
}