diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-07-21 22:01:58 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-07-21 22:01:58 +0000 |
commit | 060a58c593b039e7a7c9f144b0e3f39e11fee735 (patch) | |
tree | 596694dcc8d51e7c13ec05e9eb5bc835533ddc96 /gcc/global.c | |
parent | 2f8dd115d2bf15e3866cbe0b98c73145853681f8 (diff) | |
download | gcc-060a58c593b039e7a7c9f144b0e3f39e11fee735.zip gcc-060a58c593b039e7a7c9f144b0e3f39e11fee735.tar.gz gcc-060a58c593b039e7a7c9f144b0e3f39e11fee735.tar.bz2 |
gengenrtl.c (gencode): Don't define obstack_alloc_rtx.
* gengenrtl.c (gencode): Don't define obstack_alloc_rtx.
* function.c (SYMBOL__MAIN): Remove definition.
* global.c (SET_CONFLICT, REGBITP, ALLOCNO_LIVE_P): Remove.
* predict.c (PROB_NEVER, PROB_LIKELY, PROB_UNLIKELY): Remove.
* profile.c (GCOV_INDEX_TO_BB): Remove.
* sched-rgn.c (ABS_VALUE, MIN_DIFF_PRIORITY, MIN_PROB_DIFF): Remove.
* simplify-rtx.c (FIXED_BASE_PLUS_P): Remove.
From-SVN: r55631
Diffstat (limited to 'gcc/global.c')
-rw-r--r-- | gcc/global.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/gcc/global.c b/gcc/global.c index aaa7896..50a1648 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -171,10 +171,6 @@ static int allocno_row_words; (conflicts[(I) * allocno_row_words + (unsigned) (J) / INT_BITS] \ & ((INT_TYPE) 1 << ((unsigned) (J) % INT_BITS))) -#define SET_CONFLICT(I, J) \ - (conflicts[(I) * allocno_row_words + (unsigned) (J) / INT_BITS] \ - |= ((INT_TYPE) 1 << ((unsigned) (J) % INT_BITS))) - /* For any allocno set in ALLOCNO_SET, set ALLOCNO to that allocno, and execute CODE. */ #define EXECUTE_IF_SET_IN_ALLOCNO_SET(ALLOCNO_SET, ALLOCNO, CODE) \ @@ -231,12 +227,8 @@ static int local_reg_freq[FIRST_PSEUDO_REGISTER]; static int local_reg_live_length[FIRST_PSEUDO_REGISTER]; -/* Test a bit in TABLE, a vector of HARD_REG_SETs, - for vector element I, and hard register number J. */ - -#define REGBITP(TABLE, I, J) TEST_HARD_REG_BIT (allocno[I].TABLE, J) - -/* Set to 1 a bit in a vector of HARD_REG_SETs. Works like REGBITP. */ +/* Set to 1 a bit in a vector TABLE of HARD_REG_SETs, for vector + element I, and hard register number J. */ #define SET_REGBIT(TABLE, I, J) SET_HARD_REG_BIT (allocno[I].TABLE, J) @@ -247,10 +239,6 @@ static INT_TYPE *allocnos_live; /* Test, set or clear bit number I in allocnos_live, a bit vector indexed by allocno. */ -#define ALLOCNO_LIVE_P(I) \ - (allocnos_live[(unsigned) (I) / INT_BITS] \ - & ((INT_TYPE) 1 << ((unsigned) (I) % INT_BITS))) - #define SET_ALLOCNO_LIVE(I) \ (allocnos_live[(unsigned) (I) / INT_BITS] \ |= ((INT_TYPE) 1 << ((unsigned) (I) % INT_BITS))) |