aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1994-05-27 23:27:50 +0000
committerDoug Evans <dje@gnu.org>1994-05-27 23:27:50 +0000
commit0304dfbb673b5a0ce0af93e9fa6821ab9937d1e5 (patch)
tree82d89828e664516015a582e84da5cb3a9dc59ef2 /gcc/expr.h
parent869c489d35a294989b952baa3e5aa28fd7deb96d (diff)
downloadgcc-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index 0306530..7abeb73 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -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. */