diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-10-01 15:12:31 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-10-01 15:12:31 +0000 |
commit | 526ceb68361419fd9be6d629ac9838c4e88e8425 (patch) | |
tree | 642d211297defb60131bfbbe916e43ab1da041fc /gcc/read-rtl.c | |
parent | f6f69fb09c5f81dff3b9edcd03f5107d96e10a55 (diff) | |
download | gcc-526ceb68361419fd9be6d629ac9838c4e88e8425.zip gcc-526ceb68361419fd9be6d629ac9838c4e88e8425.tar.gz gcc-526ceb68361419fd9be6d629ac9838c4e88e8425.tar.bz2 |
remove many typedefs
gcc/ChangeLog:
2015-10-01 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* cfganal.c, compare-elim.c, coverage.c, cprop.c, df-scan.c,
function.c, read-rtl.c, statistics.c, trans-mem.c, tree-if-conv.c,
tree-into-ssa.c, tree-loop-distribution.c, tree-ssa-coalesce.c,
tree-ssa-loop-ivopts.c, tree-ssa-reassoc.c, tree-ssa-strlen.c,
tree-ssa-tail-merge.c, tree-vrp.c, var-tracking.c: Remove
unneeded typedefs.
From-SVN: r228344
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index ff08505..36e42cd 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -54,9 +54,6 @@ struct mapping { struct map_value *current_value; }; -/* Vector definitions for the above. */ -typedef struct mapping *mapping_ptr; - /* A structure for abstracting the common parts of iterators. */ struct iterator_group { /* Tables of "mapping" structures, one for attributes and one for @@ -117,7 +114,7 @@ static rtx read_rtx_variadic (rtx); static struct iterator_group modes, codes, ints, substs; /* All iterators used in the current rtx. */ -static vec<mapping_ptr> current_iterators; +static vec<mapping *> current_iterators; /* The list of all iterator uses in the current rtx. */ static vec<iterator_use> iterator_uses; |