From 65ef70d69574433ef8a0e26e31b8af7c0bbb65de Mon Sep 17 00:00:00 2001 From: Aditya Kumar Date: Thu, 1 Oct 2015 22:04:14 +0000 Subject: Rename gimple_bb to gimple_poly_bb Renaming gimple_bb to gimple_poly_bb because there is a function gimple_bb by the same name in gimple.h. No functional change intended. Passes regtest and bootstrap. gcc/ChangeLog: 2015-10-01 Aditya Kumar * graphite-isl-ast-to-gimple.c (class translate_isl_ast_to_gimple): Renamed type from gimple_bb_p to gimple_poly_bb_p. (translate_isl_ast_node_user): Same. * graphite-poly.c (new_poly_bb): Same. * graphite-poly.h (gbb_from_bb): Same. * sese.h: Same. * graphite-sese-to-poly.c (new_gimple_bb): gimple_bb_p -> gimple_poly_bb_p (build_scop_scattering): Same. (find_params_in_bb): Same. (add_conditions_to_domain): Same. (sese_dom_walker::before_dom_children): Same. (analyze_drs_in_stmts): Same. (new_pbb_from_pbb): Same. (free_data_refs_aux): New pointer to type base_alias_pair. * graphite-sese-to-poly.h: Same. * sese.c (if_region_set_false_region): Fixed Indentation. (move_sese_in_condition): Same. From-SVN: r228358 --- gcc/graphite-poly.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/graphite-poly.h') diff --git a/gcc/graphite-poly.h b/gcc/graphite-poly.h index b2dbd36..fd59d6f 100644 --- a/gcc/graphite-poly.h +++ b/gcc/graphite-poly.h @@ -277,7 +277,7 @@ struct poly_bb bool is_reduction; }; -#define PBB_BLACK_BOX(PBB) ((gimple_bb_p) PBB->black_box) +#define PBB_BLACK_BOX(PBB) ((gimple_poly_bb_p) PBB->black_box) #define PBB_SCOP(PBB) (PBB->scop) #define PBB_DRS(PBB) (PBB->drs) #define PBB_IS_REDUCTION(PBB) (PBB->is_reduction) @@ -319,10 +319,10 @@ extern void debug_gmp_value (mpz_t); /* Returns a gimple_bb from BB. */ -static inline gimple_bb_p +static inline gimple_poly_bb_p gbb_from_bb (basic_block bb) { - return (gimple_bb_p) bb->aux; + return (gimple_poly_bb_p) bb->aux; } /* The poly_bb of the BB. */ -- cgit v1.1