Commit ce940f3d by Richard Kenner

(block_alloc): Avoid #ifdef HARD_REG_SET.

From-SVN: r6976
parent 22d656b0
......@@ -1131,11 +1131,7 @@ block_alloc (b)
/* Initialize table of hardware registers currently live. */
#ifdef HARD_REG_SET
regs_live = *basic_block_live_at_start[b];
#else
COPY_HARD_REG_SET (regs_live, basic_block_live_at_start[b]);
#endif
COPY_HARD_REG_SET (regs_live, *basic_block_live_at_start[b]);
/* This loop scans the instructions of the basic block
and assigns quantities to registers.
......
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