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/expr.h | |
parent | 89a68bb98de478df887df56cbd27119d28ffe957 (diff) | |
download | gcc-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/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |