diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-06 21:44:21 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-06 14:44:21 -0700 |
commit | 4f72f5dad75eb24a699f691088eb6ea3cc907aff (patch) | |
tree | 54bfc1fe6771f19edc91548cfe23d42e3ec4848a /gcc/local-alloc.c | |
parent | fbd8fef444b20cf9d9ac9337b4132ff31f272507 (diff) | |
download | gcc-4f72f5dad75eb24a699f691088eb6ea3cc907aff.zip gcc-4f72f5dad75eb24a699f691088eb6ea3cc907aff.tar.gz gcc-4f72f5dad75eb24a699f691088eb6ea3cc907aff.tar.bz2 |
pa.h (DONT_RECORD_EQUIVALENCE): Kill.
* pa.h (DONT_RECORD_EQUIVALENCE): Kill.
* local-alloc.c (update_equiv_regs): Corresponding changes.
* tm.texi (DONT_RECORD_EQUIVALENCE): Kill.
From-SVN: r24541
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 85cb8af..0c7e248 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -796,22 +796,6 @@ update_equiv_regs () note = find_reg_note (insn, REG_EQUAL, NULL_RTX); -#ifdef DONT_RECORD_EQUIVALENCE - /* Allow the target to reject promotions of some REG_EQUAL notes to - REG_EQUIV notes. - - In some cases this can improve register allocation if the existence - of the REG_EQUIV note is likely to increase the lifetime of a register - that is likely to be spilled. - - It may also be necessary if the target can't handle certain constant - expressions appearing randomly in insns, but for whatever reason - those expressions must be considered legitimate constant expressions - to prevent them from being forced into memory. */ - if (note && DONT_RECORD_EQUIVALENCE (note)) - note = NULL; -#endif - if (REG_N_SETS (regno) != 1 && (! note || ! function_invariant_p (XEXP (note, 0)) |