+2014-11-14 Kirill Yukhin <kirill.yukhin@intel.com>
+
+ * gcc/lra-lives.c (struct bb_data): Rename to ...
+ (struct bb_data_pseudos): ... this.
+ (initiate_live_solver): Update struct name.
+
2014-11-13 Richard Biener <rguenther@suse.de>
* match.pd: Implement conditional expression patterns.
/* Structure describing local BB data used for pseudo
live-analysis. */
-struct bb_data
+struct bb_data_pseudos
{
/* Basic block about which the below data are. */
basic_block bb;
};
/* Array for all BB data. Indexed by the corresponding BB index. */
-typedef struct bb_data *bb_data_t;
+typedef struct bb_data_pseudos *bb_data_t;
/* All basic block data are referred through the following array. */
static bb_data_t bb_data;
bitmap_initialize (&temp_bitmap, ®_obstack);
bitmap_initialize (&all_hard_regs_bitmap, ®_obstack);
bitmap_set_range (&all_hard_regs_bitmap, 0, FIRST_PSEUDO_REGISTER);
- bb_data = XNEWVEC (struct bb_data, last_basic_block_for_fn (cfun));
+ bb_data = XNEWVEC (struct bb_data_pseudos, last_basic_block_for_fn (cfun));
bitmap_initialize (&all_blocks, ®_obstack);
basic_block bb;