summaryrefslogtreecommitdiff
path: root/gcc/graphite-scop-detection.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/graphite-scop-detection.c
parent9e110892a30acb3a7b405e9b19c1074e7ad59846 (diff)
downloadgcc-506868500a53b9181d45596cc7e138dce2f97d9e.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. From-SVN: r227000
Diffstat (limited to 'gcc/graphite-scop-detection.c')
-rw-r--r--gcc/graphite-scop-detection.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c
index fb7247e2e77..b2a4aafdaa0 100644
--- a/gcc/graphite-scop-detection.c
+++ b/gcc/graphite-scop-detection.c
@@ -58,7 +58,7 @@ static void make_close_phi_nodes_unique (basic_block);
/* The type of the analyzed basic block. */
-typedef enum gbb_type {
+enum gbb_type {
GBB_UNKNOWN,
GBB_LOOP_SING_EXIT_HEADER,
GBB_LOOP_MULT_EXIT_HEADER,
@@ -66,7 +66,7 @@ typedef enum gbb_type {
GBB_COND_HEADER,
GBB_SIMPLE,
GBB_LAST
-} gbb_type;
+};
/* Detect the type of BB. Loop headers are only marked, if they are
new. This means their loop_father is different to LAST_LOOP.
@@ -128,7 +128,7 @@ get_bb_type (basic_block bb, struct loop *last_loop)
9 <- exit */
-typedef struct sd_region_p
+struct sd_region
{
/* The entry bb dominates all bbs in the sd_region. It is part of
the region. */
@@ -137,7 +137,7 @@ typedef struct sd_region_p
/* The exit bb postdominates all bbs in the sd_region, but is not
part of the region. */
basic_block exit;
-} sd_region;
+};