Remove accidental addition of CLEAR_CONFLICT.
authorJeff Law <law@gcc.gnu.org>
Fri, 5 Nov 1999 18:40:34 +0000 (11:40 -0700)
committerJeff Law <law@gcc.gnu.org>
Fri, 5 Nov 1999 18:40:34 +0000 (11:40 -0700)
From-SVN: r30421

gcc/global.c

index 3cb6b34ef252f4d8a2fc69b544f86c462b1354e0..5d92ba1123185a27c54d8316dfd0dd6f6b9f3596 100644 (file)
@@ -133,12 +133,6 @@ static int allocno_row_words;
  (conflicts[(I) * allocno_row_words + (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).  */
 
 static HARD_REG_SET hard_regs_live;