diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-07-15 05:31:44 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-07-15 05:31:44 +0000 |
commit | b90f141a9d681c533c209813a6aa3f6dfce01b90 (patch) | |
tree | 598d296d7a51fac1c0dfb503e3b29e59338cf4a8 /gcc/stmt.c | |
parent | 89a68bb98de478df887df56cbd27119d28ffe957 (diff) | |
download | gcc-b90f141a9d681c533c209813a6aa3f6dfce01b90.tar.gz |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index a720691404f..e2b36b1aa64 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 (); } |