mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:00:26 +08:00
global.c, [...]: Move DEF_VEC_P(basic_block) and DEF_VEC_ALLOC_P(basic_block,{gc,heap}) to ...
* global.c, tree-ssa-pre.c: Move DEF_VEC_P(basic_block) and DEF_VEC_ALLOC_P(basic_block,{gc,heap}) to ... * basic-block.h: ... here. From-SVN: r109097
This commit is contained in:
parent
420ab68e18
commit
c71070ab83
@ -1,3 +1,9 @@
|
||||
2005-12-27 Kazu Hirata <kazu@codesourcery.com>
|
||||
|
||||
* global.c, tree-ssa-pre.c: Move DEF_VEC_P(basic_block) and
|
||||
DEF_VEC_ALLOC_P(basic_block,{gc,heap}) to ...
|
||||
* basic-block.h: ... here.
|
||||
|
||||
2005-12-27 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* fold-const.c (int_const_binop): Return NULL_TREE when an expression
|
||||
|
@ -282,6 +282,10 @@ struct rtl_bb_info GTY(())
|
||||
|
||||
typedef struct basic_block_def *basic_block;
|
||||
|
||||
DEF_VEC_P(basic_block);
|
||||
DEF_VEC_ALLOC_P(basic_block,gc);
|
||||
DEF_VEC_ALLOC_P(basic_block,heap);
|
||||
|
||||
#define BB_FREQ_MAX 10000
|
||||
|
||||
/* Masks for basic_block.flags.
|
||||
|
@ -2301,9 +2301,6 @@ rpost_cmp (const void *bb1, const void *bb2)
|
||||
/* Temporary bitmap used for live_pavin, live_pavout calculation. */
|
||||
static bitmap temp_bitmap;
|
||||
|
||||
DEF_VEC_P(basic_block);
|
||||
DEF_VEC_ALLOC_P(basic_block,heap);
|
||||
|
||||
/* The function calculates partial register availability according to
|
||||
the following equations:
|
||||
|
||||
|
@ -1334,8 +1334,6 @@ clean (value_set_t set)
|
||||
}
|
||||
}
|
||||
|
||||
DEF_VEC_P (basic_block);
|
||||
DEF_VEC_ALLOC_P (basic_block, heap);
|
||||
static sbitmap has_abnormal_preds;
|
||||
|
||||
/* Compute the ANTIC set for BLOCK.
|
||||
|
Loading…
x
Reference in New Issue
Block a user