X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbessadestr.c;h=ded0b436869e70e12f696470a72f298eecadfa74;hb=6e3e499d6c68aee0c6a9ada6a99f16c4f6f8445b;hp=ca00cc59c64e4db58be60c9f475343e227571152;hpb=30b5d43593b9621728ff616b0bb351f000c6d8e3;p=libfirm diff --git a/ir/be/bessadestr.c b/ir/be/bessadestr.c index ca00cc59c..ded0b4368 100644 --- a/ir/be/bessadestr.c +++ b/ir/be/bessadestr.c @@ -134,7 +134,7 @@ static void insert_all_perms_walker(ir_node *bl, void *data) { * Create a new Perm with the arguments just collected * above in the arg_set and insert it into the schedule. */ - in = malloc(n_projs * sizeof(in[0])); + in = xmalloc(n_projs * sizeof(in[0])); for(pp = set_first(arg_set); pp; pp = set_next(arg_set)) in[pp->pos] = pp->arg; @@ -296,7 +296,7 @@ void be_ssa_destruction(be_chordal_env_t *chordal_env) { pmap *perm_map = pmap_create(); ir_graph *irg = chordal_env->irg; - dbg = firm_dbg_register("ir.be.ssadestr"); + FIRM_DBG_REGISTER(dbg, "ir.be.ssadestr"); /* create a map for fast lookup of perms: block --> perm */ chordal_env->data = perm_map;