diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-19 02:48:16 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-08-19 02:48:16 +0000 |
commit | df8eb49017050558f1a9dfdff06561824ac545ff (patch) | |
tree | 635f05175292691ee1ddfb5191b1bbd36cff2ce7 /gcc/dwarf2out.h | |
parent | bce840812c3521aa95533e350f6f19ae5e93efd9 (diff) | |
download | gcc-df8eb49017050558f1a9dfdff06561824ac545ff.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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@227000 138bc75d-0d04-0410-961f-82ee72b054a4
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; |