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/cgraph.h | |
parent | 9e110892a30acb3a7b405e9b19c1074e7ad59846 (diff) | |
download | gcc-506868500a53b9181d45596cc7e138dce2f97d9e.zip gcc-506868500a53b9181d45596cc7e138dce2f97d9e.tar.gz gcc-506868500a53b9181d45596cc7e138dce2f97d9e.tar.bz2 |
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/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 9476896..6607b11 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -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; |