diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 1999-03-15 01:52:49 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 1999-03-15 01:52:49 +0000 |
commit | 2dfa9a87f6860348995b47f2432f851e3ce4d6f2 (patch) | |
tree | 7fe0df0111a98b6f7af1daa0cbded32b22f3ac51 /gcc/rtl.h | |
parent | 7ae575286e5c6b27aa69f2d6d80b0497dbfabd10 (diff) | |
download | gcc-2dfa9a87f6860348995b47f2432f851e3ce4d6f2.zip gcc-2dfa9a87f6860348995b47f2432f851e3ce4d6f2.tar.gz gcc-2dfa9a87f6860348995b47f2432f851e3ce4d6f2.tar.bz2 |
rtlanal.c (auto_inc_p): New function.
* rtlanal.c (auto_inc_p): New function.
* rtl.h (auto_inc_p): Prototype it.
* reload1.c (add_auto_inc_notes): New function.
(reload): Strip REG_INC notes and call add_auto_inc_notes
for each insn to restore them correctly.
From-SVN: r25774
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1041,6 +1041,7 @@ extern int computed_jump_p PROTO((rtx)); typedef int (*rtx_function) PROTO((rtx *, void *)); extern int for_each_rtx PROTO((rtx *, rtx_function, void *)); extern rtx regno_use_in PROTO((int, rtx)); +extern int auto_inc_p PROTO((rtx)); /* flow.c */ |