aboutsummaryrefslogtreecommitdiff
path: root/gcc/sched-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r--gcc/sched-int.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index 22ece1d..b2c7724 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -1381,7 +1381,7 @@ extern void schedule_ebbs_finish (void);
/* A region is the main entity for interblock scheduling: insns
are allowed to move between blocks in the same region, along
control flow graph edges, in the 'up' direction. */
-typedef struct
+struct region
{
/* Number of extended basic blocks in region. */
int rgn_nr_blocks;
@@ -1392,8 +1392,7 @@ typedef struct
unsigned int dont_calc_deps : 1;
/* This region has at least one non-trivial ebb. */
unsigned int has_real_ebb : 1;
-}
-region;
+};
extern int nr_regions;
extern region *rgn_table;