diff options
author | Alan Modra <amodra@bigpond.net.au> | 2003-05-09 06:37:25 +0000 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2003-05-09 16:07:25 +0930 |
commit | c6b97fac181cd452623b4208eb0c8209b6c47c71 (patch) | |
tree | 11c05a6d50d52041f7b10158a9e959b9b5d5b82c /gcc/expr.h | |
parent | 8ac3815a0865eaecb5a070d1ea59f299d2c22a87 (diff) | |
download | gcc-c6b97fac181cd452623b4208eb0c8209b6c47c71.tar.gz |
expr.c (move_block_from_reg): Remove "size" parm.
* expr.c (move_block_from_reg): Remove "size" parm. Localize vars.
Move code handling pieces not larger than a word to..
* function.c (assign_parms): ..here, but use change_address instead
of adjust_address and operand_subword, and expand_binop instead of
expand_shift. Adjust calls to move_block_from_reg.
* expr.h (move_block_from_reg): Update declaration.
(copy_blkmode_from_reg): Formatting.
* Makefile.in (function.o): Add $(OPTABS_H) to deps.
* config/alpha/alpha.c (alpha_setup_incoming_varargs): Adjust
move_block_from_reg calls.
* config/arc/arc.c (arc_setup_incoming_varargs): Likewise.
* config/i960/i960.c (i960_setup_incoming_varargs): Likewise.
* config/m32r/m32r.c (m32r_setup_incoming_varargs): Likewise.
* config/m88k/m88k.c (m88k_builtin_saveregsk): Likewise.
* config/mips/mips.c (mips_setup_incoming_varargs): Likewise.
* config/pa/pa.c (hppa_builtin_saveregs): Likewise.
* config/romp/romp.h (SETUP_INCOMING_VARARGS): Likewise.
* config/rs6000/rs6000.c (setup_incoming_varargs): Likewise.
* config/sh/sh.c (sh_builtin_saveregs): Likewise.
From-SVN: r66623
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 64ee6f1225a..9a73a718f47 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -414,7 +414,7 @@ extern void move_block_to_reg PARAMS ((int, rtx, int, enum machine_mode)); /* Copy all or part of a BLKmode value X out of registers starting at REGNO. The number of registers to be filled is NREGS. */ -extern void move_block_from_reg PARAMS ((int, rtx, int, int)); +extern void move_block_from_reg PARAMS ((int, rtx, int)); /* Generate a non-consecutive group of registers represented by a PARALLEL. */ extern rtx gen_group_rtx PARAMS ((rtx)); @@ -433,7 +433,7 @@ extern void emit_group_store PARAMS ((rtx, rtx, int)); #ifdef TREE_CODE /* Copy BLKmode object from a set of registers. */ -extern rtx copy_blkmode_from_reg PARAMS ((rtx,rtx,tree)); +extern rtx copy_blkmode_from_reg PARAMS ((rtx, rtx, tree)); #endif /* Mark REG as holding a parameter for the next CALL_INSN. */ |