diff options
author | Aditya Kumar <aditya.k7@samsung.com> | 2015-10-01 22:04:14 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2015-10-01 22:04:14 +0000 |
commit | 65ef70d69574433ef8a0e26e31b8af7c0bbb65de (patch) | |
tree | b47420e2ef79e0545a5d418d9d6ea1f21496fbfa /gcc/graphite-poly.c | |
parent | 6652875ffe9269a326cf7b3f17e7446079ba11d5 (diff) | |
download | gcc-65ef70d69574433ef8a0e26e31b8af7c0bbb65de.zip gcc-65ef70d69574433ef8a0e26e31b8af7c0bbb65de.tar.gz gcc-65ef70d69574433ef8a0e26e31b8af7c0bbb65de.tar.bz2 |
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 <hiraditya@msn.com>
* 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
Diffstat (limited to 'gcc/graphite-poly.c')
-rw-r--r-- | gcc/graphite-poly.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index d439758..f70a542 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -180,7 +180,7 @@ new_poly_bb (scop_p scop, void *black_box) pbb_set_black_box (pbb, black_box); PBB_DRS (pbb).create (3); PBB_IS_REDUCTION (pbb) = false; - GBB_PBB ((gimple_bb_p) black_box) = pbb; + GBB_PBB ((gimple_poly_bb_p) black_box) = pbb; return pbb; } @@ -324,7 +324,7 @@ print_pbb_domain (FILE *file, poly_bb_p pbb, int verbosity ATTRIBUTE_UNUSED) /* Dump the cases of a graphite basic block GBB on FILE. */ static void -dump_gbb_cases (FILE *file, gimple_bb_p gbb) +dump_gbb_cases (FILE *file, gimple_poly_bb_p gbb) { int i; gimple *stmt; @@ -351,7 +351,7 @@ dump_gbb_cases (FILE *file, gimple_bb_p gbb) /* Dump conditions of a graphite basic block GBB on FILE. */ static void -dump_gbb_conditions (FILE *file, gimple_bb_p gbb) +dump_gbb_conditions (FILE *file, gimple_poly_bb_p gbb) { int i; gimple *stmt; |