diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 11:38:53 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-01 11:38:53 +0000 |
commit | dfc4de0a4a9423f20143326387a74ac9bfb2a67e (patch) | |
tree | 9aa79da08f8f0253c34a6a51b34ed733dc7fbacf /gcc/rtl.h | |
parent | 017775ce1f106e9f3dae733195af345a7e018072 (diff) | |
download | gcc-dfc4de0a4a9423f20143326387a74ac9bfb2a67e.tar.gz |
PR rtl-optimization/21767
* rtl.h (function_invariant_p): Re-add declaration.
* reload1.c (function_invariant_p): No longer static.
* ifcvt.c (dead_or_predicable): Remove REG_EQUAL notes that
might have become invalid.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100448 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 2eb5d9c84b8..69091ab36d0 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2062,6 +2062,9 @@ extern void dbr_schedule (rtx, FILE *); extern void dump_local_alloc (FILE *); extern int local_alloc (void); +/* In reload1.c */ +extern int function_invariant_p (rtx); + /* In reg-stack.c */ extern bool reg_to_stack (FILE *); |