X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeirgmod.h;h=82519b8a95f9b8b51db5b6fa95eefd359db61196;hb=c4ff1c9959667db87996891435a12ae466563062;hp=e2349b7e3143e16269f990c42b44d83f5eab05bd;hpb=0c92b911be3d9d02b4a49b2a142dab8d7ba978a6;p=libfirm diff --git a/ir/be/beirgmod.h b/ir/be/beirgmod.h index e2349b7e3..82519b8a9 100644 --- a/ir/be/beirgmod.h +++ b/ir/be/beirgmod.h @@ -31,9 +31,9 @@ be_dom_front_info_t *be_compute_dominance_frontiers(ir_graph *irg); * Get the dominance frontier of a block. * @param info A pointer to the dominance frontier information. * @param block The block whose dominance frontier you want. - * @return A set containing the all blocks in the dominance frontier of @p block. + * @return A list containing the all blocks in the dominance frontier of @p block. */ -pset *be_get_dominance_frontier(be_dom_front_info_t *info, ir_node *block); +ir_node **be_get_dominance_frontier(be_dom_front_info_t *info, ir_node *block); /** * Free some dominance frontier information. @@ -121,8 +121,10 @@ struct _be_chordal_env_t; void extreme_liverange_splitting(struct _be_chordal_env_t *cenv); /** - * removes basic blocks that only contain a jump instruction - * (this will potentially create critical edges) + * Removes basic blocks that only contain a jump instruction + * (this will potentially create critical edges). + * + * @param irg the graph that will be changed */ void be_remove_empty_blocks(ir_graph *irg);