diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-17 18:37:25 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-17 18:37:25 +0000 |
commit | 503bda681ce04d0d6aca16e4bd9888aff5694b89 (patch) | |
tree | daf230a555971819896de93fc75fed34b21916d3 /gcc/integrate.h | |
parent | 1ef8ccaef9df38ff424791af75741fc1bef2eac0 (diff) | |
download | gcc-503bda681ce04d0d6aca16e4bd9888aff5694b89.tar.gz |
* integrate.h (struct inline_remap): Add local_return_label.
* integrate.c (expand_inline_function): Initialize it and emit
it after copy_insn_notes.
(copy_insn_list): Don't store local_return_label here.
(copy_insn_notes): New function split out from copy_insn_list.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40581 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/integrate.h')
-rw-r--r-- | gcc/integrate.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/integrate.h b/gcc/integrate.h index 51fced4d87e..14606a6c1b6 100644 --- a/gcc/integrate.h +++ b/gcc/integrate.h @@ -93,6 +93,9 @@ struct inline_remap /* Likewise, this is the copied constraints vector. */ rtvec copy_asm_constraints_vector; + /* Target of a return insn, if needed and inlining. */ + rtx local_return_label; + /* Indications for regs being pointers and their alignment. */ unsigned char *regno_pointer_align; rtx *x_regno_reg_rtx; |