diff options
author | Doug Evans <dje@gnu.org> | 1994-05-27 23:27:50 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-05-27 23:27:50 +0000 |
commit | 0304dfbb673b5a0ce0af93e9fa6821ab9937d1e5 (patch) | |
tree | 82d89828e664516015a582e84da5cb3a9dc59ef2 /gcc/expr.h | |
parent | 869c489d35a294989b952baa3e5aa28fd7deb96d (diff) | |
download | gcc-0304dfbb673b5a0ce0af93e9fa6821ab9937d1e5.zip gcc-0304dfbb673b5a0ce0af93e9fa6821ab9937d1e5.tar.gz gcc-0304dfbb673b5a0ce0af93e9fa6821ab9937d1e5.tar.bz2 |
expr.c (use_reg): Fix recording of USE information.
* expr.c (use_reg): Fix recording of USE information.
(use_regs): Likewise.
Delete argument `reg'. All callers changed.
* expr.h (use_regs): Update prototype.
* calls.c (expand_call): Update call to use_regs. Call use_reg
if parm is wholly in registers.
From-SVN: r7378
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -600,7 +600,7 @@ extern void move_block_from_reg PROTO((int, rtx, int, int)); extern void use_reg PROTO((rtx*, rtx)); /* Mark NREGS consecutive regs, starting at REGNO, as holding parameters for the next CALL_INSN. */ -extern void use_regs PROTO((rtx*, rtx, int, int)); +extern void use_regs PROTO((rtx*, int, int)); /* Write zeros through the storage of OBJECT. If OBJECT has BLKmode, SIZE is its length in bytes. */ |