From b90f141a9d681c533c209813a6aa3f6dfce01b90 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 15 Jul 2003 05:31:44 +0000 Subject: 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 --- gcc/stmt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/stmt.c') 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 (); } -- cgit v1.1