X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbedomfront.c;h=dd54d1d744bd7d41c89409300b7fd3254a37a253;hb=3e889332cb054e5cee1a12bba6dd0209121100cf;hp=d5a3abea75f9d3f16c2197cd0724793730d7aadf;hpb=73d95329a72d4a4e061a6f05fd28200566f26c03;p=libfirm diff --git a/ir/be/bedomfront.c b/ir/be/bedomfront.c index d5a3abea7..dd54d1d74 100644 --- a/ir/be/bedomfront.c +++ b/ir/be/bedomfront.c @@ -40,7 +40,7 @@ /** * The dominance frontier for a graph. */ -struct _be_dom_front_info_t { +struct be_dom_front_info_t { pmap *df_map; /**< A map, mapping every block to a list of its dominance frontier blocks. */ struct obstack obst; /**< An obstack holding all the frontier data. */ }; @@ -133,5 +133,5 @@ void be_free_dominance_frontiers(be_dom_front_info_t *info) ir_node **be_get_dominance_frontier(const be_dom_front_info_t *info, ir_node *block) { - return pmap_get(info->df_map, block); + return (ir_node**)pmap_get(info->df_map, block); }