From e73e99f2c41199cea3de3d4d38e2fa3b120523e6 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 22 Mar 2006 14:40:49 +0000 Subject: [PATCH] replaced malloc by xmalloc --- ir/be/bessadestr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/bessadestr.c b/ir/be/bessadestr.c index ca00cc59c..45a014994 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; -- 2.20.1