Commit 3568fdd2 by Jeffrey A Law Committed by Jeff Law

loop.c (scan_loop): Count down from max_reg_num - 1 to FIRST_PSEUDO_REGISTER to avoid calilng...

        * loop.c (scan_loop): Count down from max_reg_num - 1 to
        FIRST_PSEUDO_REGISTER to avoid calilng max_reg_num each iteration
        of the loop.

From-SVN: r22043
parent 3d55c130
Thu Aug 27 20:10:46 1998 Jeffrey A Law (law@cygnus.com) Thu Aug 27 20:10:46 1998 Jeffrey A Law (law@cygnus.com)
* loop.c (scan_loop): Count down from max_reg_num - 1 to
FIRST_PSEUDO_REGISTER to avoid calilng max_reg_num each iteration
of the loop.
* i386.c (print_operand): Remove obsolete 'c' docs. * i386.c (print_operand): Remove obsolete 'c' docs.
Wed Aug 26 17:13:37 1998 Tom Tromey <tromey@cygnus.com> Wed Aug 26 17:13:37 1998 Tom Tromey <tromey@cygnus.com>
......
...@@ -788,7 +788,7 @@ scan_loop (loop_start, end, unroll_p) ...@@ -788,7 +788,7 @@ scan_loop (loop_start, end, unroll_p)
#ifdef AVOID_CCMODE_COPIES #ifdef AVOID_CCMODE_COPIES
/* Don't try to move insns which set CC registers if we should not /* Don't try to move insns which set CC registers if we should not
create CCmode register copies. */ create CCmode register copies. */
for (i = FIRST_PSEUDO_REGISTER; i < max_reg_num (); i++) for (i = max_reg_num () - 1; i >= FIRST_PSEUDO_REGISTER; i--)
if (GET_MODE_CLASS (GET_MODE (regno_reg_rtx[i])) == MODE_CC) if (GET_MODE_CLASS (GET_MODE (regno_reg_rtx[i])) == MODE_CC)
VARRAY_CHAR (may_not_optimize, i) = 1; VARRAY_CHAR (may_not_optimize, i) = 1;
#endif #endif
......
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