Commit 9f4ec515 by Jeffrey A Law Committed by Jeff Law

loop.c: Disable recent loop changes.

        * loop.c: Disable recent loop changes.  Temporary as Joern
        continues to fix problems.

From-SVN: r25184
parent ba12c883
Sun Feb 14 00:45:50 1999 Jeffrey A Law (law@cygnus.com)
* loop.c: Disable recent loop changes. Temporary as Joern
continues to fix problems.
Sat Feb 13 23:29:42 1999 Richard Henderson <rth@cygnus.com>
* loop.c (combine_givs_used_by_other): Delete.
......
......@@ -4118,7 +4118,8 @@ strength_reduce (scan_start, end, loop_top, insn_count,
first_increment_giv = max_reg_num ();
for (n_extra_increment = 0, bl = loop_iv_list; bl; bl = bl->next)
n_extra_increment += bl->biv_count - 1;
if (n_extra_increment)
/* XXX Temporary. */
if (0 && n_extra_increment)
{
int nregs = first_increment_giv + n_extra_increment;
......@@ -4610,6 +4611,8 @@ strength_reduce (scan_start, end, loop_top, insn_count,
}
}
#if 0
/* XXX Temporary. */
/* Now that we know which givs will be reduced, try to rearrange the
combinations to reduce register pressure.
recombine_givs calls find_life_end, which needs reg_iv_type and
......@@ -4628,6 +4631,7 @@ strength_reduce (scan_start, end, loop_top, insn_count,
VARRAY_GROW (reg_iv_info, nregs);
}
recombine_givs (bl, loop_start, loop_end, unroll_p);
#endif
/* Reduce each giv that we decided to reduce. */
......@@ -8838,7 +8842,6 @@ insert_bct (loop_start, loop_end, loop_info)
int i;
unsigned HOST_WIDE_INT n_iterations;
#if 0
int increment_direction, compare_direction;
/* If the loop condition is <= or >=, the number of iteration
......@@ -8846,7 +8849,6 @@ insert_bct (loop_start, loop_end, loop_info)
int add_iteration = 0;
enum machine_mode loop_var_mode = word_mode;
#endif
int loop_num = uid_loop_num [INSN_UID (loop_start)];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment