diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-01-07 02:26:51 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2001-01-07 02:26:51 +0000 |
commit | f759eb8bf0d98603f2e6930126e517ed995a64a8 (patch) | |
tree | 17de3bb34420626f8eab111aee34a18e3a1f275f /gcc/reload1.c | |
parent | 0e2e89fd2e117555f71be7a28e41f5f7663c3395 (diff) | |
download | gcc-f759eb8bf0d98603f2e6930126e517ed995a64a8.zip gcc-f759eb8bf0d98603f2e6930126e517ed995a64a8.tar.gz gcc-f759eb8bf0d98603f2e6930126e517ed995a64a8.tar.bz2 |
reload.c (subst_reloads): Take INSN argument.
* reload.c (subst_reloads): Take INSN argument. When
replacing a LABEL_REF in a JUMP_INSN, add a REG_LABEL note.
* reload.h (subst_reloads): Adjust prototype.
* reload1.c (reload_as_needed): Pass INSN to subst_reloads.
* jump.c (mark_all_labels): Canonicalize any REG_LABEL notes
present in JUMP_INSNs and copy them to JUMP_LABEL.
* flow.c (find_label_refs, find_basic_blocks_1): Skip
JUMP_INSNs and insns with REG_LABELs that are followed by
JUMP_INSNs with the same REG_LABEL.
* sched-rgn.c (is_cfg_nonregular): Likewise.
* rtlanal.c (computed_jump_p): Make it false if a REG_LABEL
note is available.
* unroll.c (unroll_loop): Look for REG_LABEL notes in
JUMP_INSNs too.
* rtl.texi (REG_LABEL): Document usage in JUMP_INSNs.
From-SVN: r38755
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index 3a3dab0..783c8dc 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -3830,7 +3830,7 @@ reload_as_needed (live_known) into the insn's body (or perhaps into the bodies of other load and store insn that we just made for reloading and that we moved the structure into). */ - subst_reloads (); + subst_reloads (insn); /* If this was an ASM, make sure that all the reload insns we have generated are valid. If not, give an error |