Commit 030e2b51 by Clinton Popetz Committed by Stan Cox

* regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.

From-SVN: r32969
parent dabe43de
2000-04-06 Clinton Popetz <cpopetz@cygnus.com>
* regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.
2000-04-06 Zack Weinberg <zack@wolery.cumb.org>
* cpphash.c (CPP_IS_MACRO_BUFFER, FORWARD, PEEKC): Delete.
......
......@@ -335,7 +335,11 @@ regrename_optimize ()
ar_idx < FIRST_PSEUDO_REGISTER;
ar_idx++)
{
#ifdef REG_ALLOC_ORDER
avail_reg = reg_alloc_order[ar_idx];
#else
avail_reg = ar_idx;
#endif
if (consider_available (reg_use, avail_reg, &avail_regs,
rc, &du, def_idx[def]))
break;
......
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