void print_iteration_domains (FILE *file, scop_p scop) { int i; poly_bb_p pbb; FOR_EACH_VEC_ELT (scop->pbbs, i, pbb) print_iteration_domain (file, pbb); }
void print_iteration_domains (FILE *file, scop_p scop, int verbosity) { int i; poly_bb_p pbb; for (i = 0; VEC_iterate (poly_bb_p, SCOP_BBS (scop), i, pbb); i++) print_iteration_domain (file, pbb, verbosity); }
DEBUG_FUNCTION void debug_iteration_domain (poly_bb_p pbb) { print_iteration_domain (stderr, pbb); }
void debug_iteration_domain (poly_bb_p pbb, int verbosity) { print_iteration_domain (stderr, pbb, verbosity); }