Rename struct in gcc/lra-lives.c
authorKirill Yukhin <kirill.yukhin@intel.com>
Thu, 13 Nov 2014 09:12:09 +0000 (09:12 +0000)
committerKirill Yukhin <kyukhin@gcc.gnu.org>
Thu, 13 Nov 2014 09:12:09 +0000 (09:12 +0000)
gcc/
* gcc/lra-lives.c (struct bb_data): Rename to ...
(struct bb_data_pseudos): ... this.
(initiate_live_solver): Update struct name.

From-SVN: r217468

gcc/ChangeLog
gcc/lra-lives.c

index 87dbc6e14a4b2aa79bfd35824101ce797ba72161..613208d3351ab3ea65f9ec063c0bf08de75bd50b 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 5ea5ecdcc524d1eb1aaa23efaf2954d5d6b96743..9d1c189786bad2dcaef5404f80f199cede38b427 100644 (file)
@@ -390,7 +390,7 @@ mark_regno_dead (int regno, machine_mode mode, int point, bool local_sets_p)
 
 /* 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;
@@ -399,7 +399,7 @@ struct bb_data
 };
 
 /* 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;
@@ -479,7 +479,7 @@ initiate_live_solver (void)
   bitmap_initialize (&temp_bitmap, &reg_obstack);
   bitmap_initialize (&all_hard_regs_bitmap, &reg_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, &reg_obstack);
 
   basic_block bb;