remove useless typedefs
authorTrevor Saunders <tbsaunde@tbsaunde.org>
Wed, 19 Aug 2015 02:48:16 +0000 (02:48 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Wed, 19 Aug 2015 02:48:16 +0000 (02:48 +0000)
gcc/ChangeLog:

2015-08-11  trevor Saunders  <tbsaunde@tbsaunde.org>

* bt-load.c, cgraph.h, dwarf2out.c, dwarf2out.h, final.c,
function.c, graphite-scop-detection.c, haifa-sched.c,
ipa-devirt.c, ipa-split.c, recog.c, ree.c, stmt.c,
tree-data-ref.c, tree-ssa-dom.c, tree-ssa-loop-ivopts.c,
varasm.c: Remove typedefs of structs.

From-SVN: r227000

18 files changed:
gcc/ChangeLog
gcc/bt-load.c
gcc/cgraph.h
gcc/dwarf2out.c
gcc/dwarf2out.h
gcc/final.c
gcc/function.c
gcc/graphite-scop-detection.c
gcc/haifa-sched.c
gcc/ipa-devirt.c
gcc/ipa-split.c
gcc/recog.c
gcc/ree.c
gcc/stmt.c
gcc/tree-data-ref.c
gcc/tree-ssa-dom.c
gcc/tree-ssa-loop-ivopts.c
gcc/varasm.c

index 109065636c69675a541c77e8a5c1370359b43b9e..db23a0f07d4b15cf8b05249e690d48c256776fcf 100644 (file)
@@ -1,3 +1,11 @@
+2015-08-18  trevor Saunders  <tbsaunde@tbsaunde.org>
+
+       * bt-load.c, cgraph.h, dwarf2out.c, dwarf2out.h, final.c,
+       function.c, graphite-scop-detection.c, haifa-sched.c,
+       ipa-devirt.c, ipa-split.c, recog.c, ree.c, stmt.c,
+       tree-data-ref.c, tree-ssa-dom.c, tree-ssa-loop-ivopts.c,
+       varasm.c: Remove typedefs of structs.
+
 2015-08-18  Bill Schmidt  <wschmidt@vnet.linux.ibm.com>
 
        * config/rs6000/altivec.h (vec_adde): New define.
index 031b95de08275b5a9af6324580040438d8e7376f..5d8b752bd2c3131f40abd5348c7ab0312f64ce07 100644 (file)
@@ -404,13 +404,13 @@ note_other_use_this_block (unsigned int regno, btr_user users_this_bb)
       user->other_use_this_block = 1;
 }
 
-typedef struct {
+struct defs_uses_info {
   btr_user users_this_bb;
   HARD_REG_SET btrs_written_in_block;
   HARD_REG_SET btrs_live_in_block;
   sbitmap bb_gen;
   sbitmap *btr_defset;
-} defs_uses_info;
+};
 
 /* Called via note_stores or directly to register stores into /
    clobbers of a branch target register DEST that are not recognized as
index 9476896e759a38cd2b33202a7409dce98dd6b8e8..6607b1127c27411cfc793f759e15ba774a91ec87 100644 (file)
@@ -39,7 +39,7 @@ enum symtab_type
 /* Section names are stored as reference counted strings in GGC safe hashtable
    (to make them survive through PCH).  */
 
-struct GTY((for_user)) section_hash_entry_d
+struct GTY((for_user)) section_hash_entry
 {
   int ref_count;
   char *name;  /* As long as this datastructure stays in GGC, we can not put
@@ -47,8 +47,6 @@ struct GTY((for_user)) section_hash_entry_d
                  way  */
 };
 
-typedef struct section_hash_entry_d section_hash_entry;
-
 struct section_name_hasher : ggc_ptr_hash<section_hash_entry>
 {
   typedef const char *compare_type;
index 92903f89638e633ed943f66f482c2d5ada810315..d9d3063be1dda620f3e1e800d3d53cc5f6616d8c 100644 (file)
@@ -1258,7 +1258,7 @@ enum ate_kind {
   ate_kind_label
 };
 
-typedef struct GTY((for_user)) addr_table_entry_struct {
+struct GTY((for_user)) addr_table_entry {
   enum ate_kind kind;
   unsigned int refcount;
   unsigned int index;
@@ -1268,8 +1268,7 @@ typedef struct GTY((for_user)) addr_table_entry_struct {
       char * GTY ((tag ("1"))) label;
     }
   GTY ((desc ("%1.kind"))) addr;
-}
-addr_table_entry;
+};
 
 /* Location lists are ranges + location descriptions for that range,
    so you can track variables that are in different places over
index 7777251e88e80def42c0c41e20242ac361b286c1..4fe3527326a9786c66ae5f22694d99094684ae0c 100644 (file)
@@ -161,14 +161,14 @@ struct GTY(()) dw_vec_const {
   unsigned elt_size;
 };
 
-struct addr_table_entry_struct;
+struct addr_table_entry;
 
 /* The dw_val_node describes an attribute's value, as it is
    represented internally.  */
 
 struct GTY(()) dw_val_node {
   enum dw_val_class val_class;
-  struct addr_table_entry_struct * GTY(()) val_entry;
+  struct addr_table_entry * GTY(()) val_entry;
   union dw_val_struct_union
     {
       rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
index 5d91609396dfbc839a769164c4594be4717d33e6..f01f4fcb11a327271ae7c8cc15ff05d7039113f2 100644 (file)
@@ -1518,14 +1518,14 @@ asm_str_count (const char *templ)
 /* Structure recording the mapping from source file and directory
    names at compile time to those to be embedded in debug
    information.  */
-typedef struct debug_prefix_map
+struct debug_prefix_map
 {
   const char *old_prefix;
   const char *new_prefix;
   size_t old_len;
   size_t new_len;
   struct debug_prefix_map *next;
-} debug_prefix_map;
+};
 
 /* Linked list of such structures.  */
 static debug_prefix_map *debug_prefix_maps;
index 715c19f4ebc269fa14cd3c3eea79796af911b569..5a3c7bcbb3803ed953421e99d3a6916780f491e2 100644 (file)
@@ -1230,18 +1230,18 @@ init_temp_slots (void)
 
 /* Private type used by get_hard_reg_initial_reg, get_hard_reg_initial_val,
    and has_hard_reg_initial_val..  */
-typedef struct GTY(()) initial_value_pair {
+struct GTY(()) initial_value_pair {
   rtx hard_reg;
   rtx pseudo;
-} initial_value_pair;
+};
 /* ???  This could be a VEC but there is currently no way to define an
    opaque VEC type.  This could be worked around by defining struct
    initial_value_pair in function.h.  */
-typedef struct GTY(()) initial_value_struct {
+struct GTY(()) initial_value_struct {
   int num_entries;
   int max_entries;
   initial_value_pair * GTY ((length ("%h.num_entries"))) entries;
-} initial_value_struct;
+};
 
 /* If a pseudo represents an initial hard reg (or expression), return
    it, else return NULL_RTX.  */
index fb7247e2e77481260f51f5a490075fe6f872a2c2..b2a4aafdaa00fa615ff1482d522739cb9bd769f8 100644 (file)
@@ -58,7 +58,7 @@ static void make_close_phi_nodes_unique (basic_block);
 
 /* The type of the analyzed basic block.  */
 
-typedef enum gbb_type {
+enum gbb_type {
   GBB_UNKNOWN,
   GBB_LOOP_SING_EXIT_HEADER,
   GBB_LOOP_MULT_EXIT_HEADER,
@@ -66,7 +66,7 @@ typedef enum gbb_type {
   GBB_COND_HEADER,
   GBB_SIMPLE,
   GBB_LAST
-} gbb_type;
+};
 
 /* Detect the type of BB.  Loop headers are only marked, if they are
    new.  This means their loop_father is different to LAST_LOOP.
@@ -128,7 +128,7 @@ get_bb_type (basic_block bb, struct loop *last_loop)
      9 <- exit  */
 
 
-typedef struct sd_region_p
+struct sd_region
 {
   /* The entry bb dominates all bbs in the sd_region.  It is part of
      the region.  */
@@ -137,7 +137,7 @@ typedef struct sd_region_p
   /* The exit bb postdominates all bbs in the sd_region, but is not
      part of the region.  */
   basic_block exit;
-} sd_region;
+};
 
 
 
index 0912606aa1a377b3b3a77aaa275aa23c570eaa96..c35d777321763650c9b044b2d87493c84f5a6f3f 100644 (file)
@@ -2569,7 +2569,7 @@ static const char *rfs_str[RFS_N] = {
   "RFS_DEP_COUNT", "RFS_TIE", "RFS_FUSION" };
 
 /* Statistical breakdown of rank_for_schedule decisions.  */
-typedef struct { unsigned stats[RFS_N]; } rank_for_schedule_stats_t;
+struct rank_for_schedule_stats_t { unsigned stats[RFS_N]; };
 static rank_for_schedule_stats_t rank_for_schedule_stats;
 
 /* Return the result of comparing insns TMP and TMP2 and update
index 0a92768b5e82458cd4008314a6189ef3a01c5184..3eb24560c8281ad84d53fcd540a43ed1949ede45 100644 (file)
@@ -145,11 +145,11 @@ along with GCC; see the file COPYING3.  If not see
 #include "lto-streamer.h"
 
 /* Hash based set of pairs of types.  */
-typedef struct
+struct type_pair
 {
   tree first;
   tree second;
-} type_pair;
+};
 
 template <>
 struct default_hash_traits <type_pair> : typed_noop_remove <type_pair>
index 69f293f7a8827ac6a5750456483df8319bf3029e..8bb3e6089cdfe6e548173e8343a7149e2979a938 100644 (file)
@@ -122,11 +122,11 @@ along with GCC; see the file COPYING3.  If not see
 
 /* Per basic block info.  */
 
-typedef struct
+struct split_bb_info
 {
   unsigned int size;
   unsigned int time;
-} split_bb_info;
+};
 
 static vec<split_bb_info> bb_info_vec;
 
@@ -1008,7 +1008,7 @@ visit_bb (basic_block bb, basic_block return_bb,
 
 /* Stack entry for recursive DFS walk in find_split_point.  */
 
-typedef struct
+struct stack_entry
 {
   /* Basic block we are examining.  */
   basic_block bb;
@@ -1034,7 +1034,7 @@ typedef struct
 
   /* When false we can not split on this BB.  */
   bool can_split;
-} stack_entry;
+};
 
 
 /* Find all articulations and call consider_split on them.
index 120f7b9a44a76a71fd0ef0cb3f26743d26e23616..c595bbdea5cd2f29eb900217099d0c4fe9b012de 100644 (file)
@@ -188,14 +188,14 @@ check_asm_operands (rtx x)
 \f
 /* Static data for the next two routines.  */
 
-typedef struct change_t
+struct change_t
 {
   rtx object;
   int old_code;
   rtx *loc;
   rtx old;
   bool unshare;
-} change_t;
+};
 
 static change_t *changes;
 static int changes_allocated;
index 016659c6cb191033418be457cc83fa6cad918f68..6156eec97ac0abb80b1797ed7e1279070777e10f 100644 (file)
--- a/gcc/ree.c
+++ b/gcc/ree.c
@@ -249,7 +249,7 @@ along with GCC; see the file COPYING3.  If not see
 
 /* This structure represents a candidate for elimination.  */
 
-typedef struct ext_cand
+struct ext_cand
 {
   /* The expression.  */
   const_rtx expr;
@@ -262,7 +262,7 @@ typedef struct ext_cand
 
   /* The instruction where it lives.  */
   rtx_insn *insn;
-} ext_cand;
+};
 
 
 static int max_insn_uid;
@@ -565,7 +565,7 @@ struct ATTRIBUTE_PACKED ext_modified
 };
 
 /* Vectors used by combine_reaching_defs and its helpers.  */
-typedef struct ext_state
+struct ext_state
 {
   /* In order to avoid constant alloc/free, we keep these
      4 vectors live through the entire find_and_remove_re and just
@@ -579,7 +579,7 @@ typedef struct ext_state
      the original mode from which the insn is extending and
      kind of extension.  */
   struct ext_modified *modified;
-} ext_state;
+};
 
 /* Reaching Definitions of the extended register could be conditional copies
    or regular definitions.  This function separates the two types into two
index e7f7dd43e74ea014680266be0f96bfd24689c7ed..9d33cbe03e4b0ece148ef6dee9d6eefdd0aeebf5 100644 (file)
@@ -106,7 +106,6 @@ struct case_node
   int                   subtree_prob;
 };
 
-typedef struct case_node case_node;
 typedef struct case_node *case_node_ptr;
 
 extern basic_block label_to_block_fn (struct function *, tree);
index d0b7aa21eacaaa9fb467cd7d6af1c43d23d4f42e..ebf9dd23f778062e3382a4cb60b7cf0f9c9a3d85 100644 (file)
@@ -3798,14 +3798,14 @@ compute_all_dependences (vec<data_reference_p> datarefs,
 
 /* Describes a location of a memory reference.  */
 
-typedef struct data_ref_loc_d
+struct data_ref_loc
 {
   /* The memory reference.  */
   tree ref;
 
   /* True if the memory reference is read.  */
   bool is_read;
-} data_ref_loc;
+};
 
 
 /* Stores the locations of memory references in STMT to REFERENCES.  Returns
index 3eb003c728a92b6eca2312a483ea37c9dc03f211..248b0371ebda48f758f0ed8693a32eadd6c91c1f 100644 (file)
@@ -85,11 +85,11 @@ struct hashable_expr
 /* Structure for recording known values of a conditional expression
    at the exits from its block.  */
 
-typedef struct cond_equivalence_s
+struct cond_equivalence
 {
   struct hashable_expr cond;
   tree value;
-} cond_equivalence;
+};
 
 
 /* Structure for recording edge equivalences as well as any pending
index 6bce3a1090d5a1c3e822d696557db376f976e713..723a9f7f5bc55af509d70fabb3059eaf7b2954ae 100644 (file)
@@ -169,14 +169,14 @@ enum use_type
 };
 
 /* Cost of a computation.  */
-typedef struct
+struct comp_cost
 {
   int cost;            /* The runtime cost.  */
   unsigned complexity; /* The estimate of the complexity of the code for
                           the computation (in no concrete units --
                           complexity field should be larger for more
                           complex expressions and addressing modes).  */
-} comp_cost;
+};
 
 static const comp_cost no_cost = {0, 0};
 static const comp_cost infinite_cost = {INFTY, INFTY};
index 6a4ba0bb8f5107c338c623480990132c9c3854c0..2ebac89f99e6598263a5c82772f074518e553c6f 100644 (file)
@@ -4640,10 +4640,10 @@ initializer_constant_valid_for_bitfield_p (tree value)
 /* output_constructor outer state of relevance in recursive calls, typically
    for nested aggregate bitfields.  */
 
-typedef struct {
+struct oc_outer_state {
   unsigned int bit_offset;  /* current position in ...  */
   int byte;                 /* ... the outer byte buffer.  */
-} oc_outer_state;
+};
 
 static unsigned HOST_WIDE_INT
   output_constructor (tree, unsigned HOST_WIDE_INT, unsigned int,
@@ -4883,7 +4883,7 @@ array_size_for_constructor (tree val)
 
 /* output_constructor local state to support interaction with helpers.  */
 
-typedef struct {
+struct oc_local_state {
 
   /* Received arguments.  */
   tree exp;                     /* Constructor expression.  */
@@ -4904,7 +4904,7 @@ typedef struct {
   tree val;        /* Current element value.  */
   tree index;      /* Current element index.  */
 
-} oc_local_state;
+};
 
 /* Helper for output_constructor.  From the current LOCAL state, output a
    RANGE_EXPR element.  */
@@ -5829,12 +5829,12 @@ get_tm_clone_pair (tree o)
   return NULL_TREE;
 }
 
-typedef struct tm_alias_pair
+struct tm_alias_pair
 {
   unsigned int uid;
   tree from;
   tree to;
-} tm_alias_pair;
+};
 
 
 /* Dump the actual pairs to the .tm_clone_table section.  */