diff options
author | Trevor Saunders <tbsaunde@tbsaunde.org> | 2015-08-19 02:48:16 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-08-19 02:48:16 +0000 |
commit | 506868500a53b9181d45596cc7e138dce2f97d9e (patch) | |
tree | 635f05175292691ee1ddfb5191b1bbd36cff2ce7 /gcc/ipa-split.c | |
parent | 9e110892a30acb3a7b405e9b19c1074e7ad59846 (diff) | |
download | gcc-506868500a53b9181d45596cc7e138dce2f97d9e.tar.gz |
remove useless typedefs
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
Diffstat (limited to 'gcc/ipa-split.c')
-rw-r--r-- | gcc/ipa-split.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ipa-split.c b/gcc/ipa-split.c index 69f293f7a88..8bb3e6089cd 100644 --- a/gcc/ipa-split.c +++ b/gcc/ipa-split.c @@ -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. |