Commit 22d656b0 by Richard Kenner

(global_conflicts): Avoid #ifdef HARD_REG_SET.

From-SVN: r6975
parent 54bd7fd4
......@@ -625,11 +625,8 @@ global_conflicts ()
register regset old = basic_block_live_at_start[b];
int ax = 0;
#ifdef HARD_REG_SET
hard_regs_live = old[0];
#else
COPY_HARD_REG_SET (hard_regs_live, old);
#endif
COPY_HARD_REG_SET (hard_regs_live, old[0]);
for (offset = 0, i = 0; offset < regset_size; offset++)
if (old[offset] == 0)
i += REGSET_ELT_BITS;
......
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