Commit 3496699a by Jeff Law

Remove accidental addition of CLEAR_CONFLICT.

From-SVN: r30421
parent 09e7d04a
...@@ -133,12 +133,6 @@ static int allocno_row_words; ...@@ -133,12 +133,6 @@ static int allocno_row_words;
(conflicts[(I) * allocno_row_words + (unsigned)(J) / INT_BITS] \ (conflicts[(I) * allocno_row_words + (unsigned)(J) / INT_BITS] \
|= ((INT_TYPE) 1 << ((unsigned)(J) % INT_BITS))) |= ((INT_TYPE) 1 << ((unsigned)(J) % INT_BITS)))
/* CYGNUS LOCAL LRS */
#define CLEAR_CONFLICT(I, J) \
(conflicts[(I) * allocno_row_words + (J) / INT_BITS] \
&= ~ ((INT_TYPE) 1 << ((J) % INT_BITS)))
/* END CYGNUS LOCAL */
/* Set of hard regs currently live (during scan of all insns). */ /* Set of hard regs currently live (during scan of all insns). */
static HARD_REG_SET hard_regs_live; static HARD_REG_SET hard_regs_live;
......
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