X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Fircgopt.c;h=e962a8c04fc8993f238ea9391628ad4675c4a0d5;hb=44faeb9742640d3498eb4482f98eb1255607c4d6;hp=5af9d7fdeed29f9df01c3e7a3d35d2503ff6486a;hpb=4eccb33ba0d66dc1077cd5ce405ecc6d8a914d78;p=libfirm diff --git a/ir/opt/ircgopt.c b/ir/opt/ircgopt.c index 5af9d7fde..e962a8c04 100644 --- a/ir/opt/ircgopt.c +++ b/ir/opt/ircgopt.c @@ -59,9 +59,13 @@ static void collect_call(ir_node *node, void *env) { } } -static void make_entity_to_description(type_or_ent *tore, void *env) { - if (get_kind(tore) == k_entity) { - ir_entity *ent = (ir_entity *)tore; +/** + * Type walker, set the peculiarity of entities which graphs + * gets removed to peculiarity_description. + */ +static void make_entity_to_description(type_or_ent tore, void *env) { + if (is_entity(tore.ent)) { + ir_entity *ent = tore.ent; if ((is_Method_type(get_entity_type(ent))) && (get_entity_peculiarity(ent) != peculiarity_description) && @@ -104,7 +108,7 @@ void gc_irgs(int n_keep, ir_entity ** keep_arr) { ir_node *node = get_irg_end(irg); /* collect calls */ - set_using_irn_link(irg); + ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK); irg_walk_graph(irg, firm_clear_link, collect_call, node); /* iterate calls */ @@ -124,7 +128,7 @@ void gc_irgs(int n_keep, ir_entity ** keep_arr) { } } } - clear_using_irn_link(irg); + ir_free_resources(irg, IR_RESOURCE_IRN_LINK); } } DEL_ARR_F(marked);