diff options
author | gavin <gavin@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-01 13:00:21 +0000 |
---|---|---|
committer | gavin <gavin@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-01 13:00:21 +0000 |
commit | 25eb0f5951809b0eb1014fd79a628160f452ac20 (patch) | |
tree | 9b145af594c102bee9b10b504ce7129d9016e08b /gcc/expr.h | |
parent | e115fee2ed4cb2c3b4407f6457aa82ae6d54aa1f (diff) | |
download | gcc-25eb0f5951809b0eb1014fd79a628160f452ac20.tar.gz |
* calls.c (expand_call) : Encapsulate code into
copy_blkmode_from_reg.
* expr.c (copy_blkmode_from_reg): New function.
* expr.h (copy_blkmode_from_reg): New function.
* integrate.c (function_cannot_inline_p): We can inline
these now.
(expand_inline_function): Use copy_blkmode_from_reg
if needed. Avoid creating BLKmode REGs.
(copy_rtx_and_substitute): Don't try to SUBREG a BLKmode
object.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22714 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 6d8d22a84d3..353e6fdfe46 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -732,6 +732,11 @@ extern void emit_group_load PROTO((rtx, rtx, int, int)); PARALLEL. */ extern void emit_group_store PROTO((rtx, rtx, int, int)); +#ifdef TREE_CODE +/* Copy BLKmode object from a set of registers. */ +extern rtx copy_blkmode_from_reg PROTO((rtx,rtx,tree)); +#endif + /* Mark REG as holding a parameter for the next CALL_INSN. */ extern void use_reg PROTO((rtx *, rtx)); /* Mark NREGS consecutive regs, starting at REGNO, as holding parameters |