diff options
Diffstat (limited to 'gcc/graphite-clast-to-gimple.h')
-rw-r--r-- | gcc/graphite-clast-to-gimple.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/graphite-clast-to-gimple.h b/gcc/graphite-clast-to-gimple.h index 78e60e2dafa..e3db1e89132 100644 --- a/gcc/graphite-clast-to-gimple.h +++ b/gcc/graphite-clast-to-gimple.h @@ -25,18 +25,18 @@ extern CloogState *cloog_state; /* Data structure for CLooG program representation. */ -typedef struct cloog_prog_clast { +struct cloog_prog_clast { CloogProgram *prog; struct clast_stmt *stmt; -} cloog_prog_clast; +}; /* Stores BB's related PBB. */ -typedef struct bb_pbb_def +struct bb_pbb_def { basic_block bb; poly_bb_p pbb; -} bb_pbb_def; +}; extern void debug_clast_stmt (struct clast_stmt *); extern void print_clast_stmt (FILE *, struct clast_stmt *); |