summaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-05 18:40:34 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-05 18:40:34 +0000
commitf51a24020e7df8cdbf6b6b4f613362d1733c3b5a (patch)
tree0f08a7bc0b6b00939376dc9141456e4b47735bb6 /gcc/global.c
parent3560c6fc6f4b2841d46b77618746df8f1ce1430b (diff)
downloadgcc-f51a24020e7df8cdbf6b6b4f613362d1733c3b5a.tar.gz
Remove accidental addition of CLEAR_CONFLICT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30421 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/global.c')
-rw-r--r--gcc/global.c6
1 files changed, 0 insertions, 6 deletions
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;