From 506868500a53b9181d45596cc7e138dce2f97d9e Mon Sep 17 00:00:00 2001 From: Trevor Saunders Date: Wed, 19 Aug 2015 02:48:16 +0000 Subject: remove useless typedefs gcc/ChangeLog: 2015-08-11 trevor Saunders * 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 --- gcc/graphite-scop-detection.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/graphite-scop-detection.c') diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c index fb7247e..b2a4aaf 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; +}; -- cgit v1.1