diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-15 05:31:44 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-15 05:31:44 +0000 |
commit | 725cd5ad872cb08ea2a0c8d5622c07e0a65dbbba (patch) | |
tree | 598d296d7a51fac1c0dfb503e3b29e59338cf4a8 /gcc/expr.h | |
parent | 55560f17f37ae2d618adecb01f812f036ad0acb9 (diff) | |
download | gcc-725cd5ad872cb08ea2a0c8d5622c07e0a65dbbba.tar.gz |
* expr.c (expand_assignment): Remove an unused argument
SUGGEST_REG.
* expr.h: Update the prototype.
* function.c: Update the callers.
* stmt.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69379 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index ba84fd02ae8..9abea77872b 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -493,7 +493,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, int); +extern rtx expand_assignment (tree, tree, int); /* Generate code for computing expression EXP, and storing the value into TARGET. |