diff options
Diffstat (limited to 'gcc/graphite-htab.h')
-rw-r--r-- | gcc/graphite-htab.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/graphite-htab.h b/gcc/graphite-htab.h index d67dd0c..ee2507f 100644 --- a/gcc/graphite-htab.h +++ b/gcc/graphite-htab.h @@ -50,11 +50,11 @@ bb_pbb_hasher::equal (const value_type *bp1, const compare_type *bp2) return (bp1->bb->index == bp2->bb->index); } -typedef hash_table <bb_pbb_hasher> bb_pbb_htab_type; +typedef hash_table<bb_pbb_hasher> bb_pbb_htab_type; -extern bool gloog (scop_p, bb_pbb_htab_type); -poly_bb_p find_pbb_via_hash (bb_pbb_htab_type, basic_block); -bool loop_is_parallel_p (loop_p, bb_pbb_htab_type, int); -scop_p get_loop_body_pbbs (loop_p, bb_pbb_htab_type, vec<poly_bb_p> *); +extern bool gloog (scop_p, bb_pbb_htab_type *); +poly_bb_p find_pbb_via_hash (bb_pbb_htab_type *, basic_block); +bool loop_is_parallel_p (loop_p, bb_pbb_htab_type *, int); +scop_p get_loop_body_pbbs (loop_p, bb_pbb_htab_type *, vec<poly_bb_p> *); #endif |