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/dwarf2out.h | |
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/dwarf2out.h')
-rw-r--r-- | gcc/dwarf2out.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarf2out.h b/gcc/dwarf2out.h index 7777251e88e..4fe3527326a 100644 --- a/gcc/dwarf2out.h +++ b/gcc/dwarf2out.h @@ -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; |