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/tree-data-ref.c | |
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/tree-data-ref.c')
-rw-r--r-- | gcc/tree-data-ref.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-data-ref.c b/gcc/tree-data-ref.c index d0b7aa2..ebf9dd2 100644 --- a/gcc/tree-data-ref.c +++ b/gcc/tree-data-ref.c @@ -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 |