From: Jeff Law Date: Fri, 5 Nov 1999 18:40:34 +0000 (-0700) Subject: Remove accidental addition of CLEAR_CONFLICT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3496699a4c51d522f46b68a7f136475af88555b9;p=gcc.git Remove accidental addition of CLEAR_CONFLICT. From-SVN: r30421 --- diff --git a/gcc/global.c b/gcc/global.c index 3cb6b34ef25..5d92ba11231 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -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;