aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1999-11-05 11:40:34 -0700
committerJeff Law <law@gcc.gnu.org>1999-11-05 11:40:34 -0700
commit3496699a4c51d522f46b68a7f136475af88555b9 (patch)
tree0f08a7bc0b6b00939376dc9141456e4b47735bb6 /gcc
parent09e7d04a1b2b2365cc8bc61a0ab41115b653a2ce (diff)
downloadgcc-3496699a4c51d522f46b68a7f136475af88555b9.zip
gcc-3496699a4c51d522f46b68a7f136475af88555b9.tar.gz
gcc-3496699a4c51d522f46b68a7f136475af88555b9.tar.bz2
Remove accidental addition of CLEAR_CONFLICT.
From-SVN: r30421
Diffstat (limited to 'gcc')
-rw-r--r--gcc/global.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/global.c b/gcc/global.c
index 3cb6b34..5d92ba1 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;