aboutsummaryrefslogtreecommitdiff
path: root/gcc/ree.c
diff options
context:
space:
mode:
authorTrevor Saunders <tbsaunde@tbsaunde.org>2015-08-19 02:48:16 +0000
committerTrevor Saunders <tbsaunde@gcc.gnu.org>2015-08-19 02:48:16 +0000
commit506868500a53b9181d45596cc7e138dce2f97d9e (patch)
tree635f05175292691ee1ddfb5191b1bbd36cff2ce7 /gcc/ree.c
parent9e110892a30acb3a7b405e9b19c1074e7ad59846 (diff)
downloadgcc-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/ree.c')
-rw-r--r--gcc/ree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ree.c b/gcc/ree.c
index 016659c..6156eec 100644
--- a/gcc/ree.c
+++ b/gcc/ree.c
@@ -249,7 +249,7 @@ along with GCC; see the file COPYING3. If not see
/* This structure represents a candidate for elimination. */
-typedef struct ext_cand
+struct ext_cand
{
/* The expression. */
const_rtx expr;
@@ -262,7 +262,7 @@ typedef struct ext_cand
/* The instruction where it lives. */
rtx_insn *insn;
-} ext_cand;
+};
static int max_insn_uid;
@@ -565,7 +565,7 @@ struct ATTRIBUTE_PACKED ext_modified
};
/* Vectors used by combine_reaching_defs and its helpers. */
-typedef struct ext_state
+struct ext_state
{
/* In order to avoid constant alloc/free, we keep these
4 vectors live through the entire find_and_remove_re and just
@@ -579,7 +579,7 @@ typedef struct ext_state
the original mode from which the insn is extending and
kind of extension. */
struct ext_modified *modified;
-} ext_state;
+};
/* Reaching Definitions of the extended register could be conditional copies
or regular definitions. This function separates the two types into two