Commit c71070ab by Kazu Hirata Committed by Kazu Hirata

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
parent 420ab68e
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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment