From: Michael Beck Date: Tue, 6 Jun 2006 12:07:45 +0000 (+0000) Subject: use xmalloc instead of malloc X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d1761f5ecefabce588a7db95e8e8f8ce76498480;p=libfirm use xmalloc instead of malloc --- diff --git a/ir/be/becopyheur2.c b/ir/be/becopyheur2.c index b6e58c0a4..e7fbd6327 100644 --- a/ir/be/becopyheur2.c +++ b/ir/be/becopyheur2.c @@ -859,7 +859,7 @@ static void process_cloud(co2_cloud_t *cloud) co2_t *env = cloud->env; int n_regs = env->n_regs; int n_edges = 0; - int *mst_edges = malloc(cloud->n_memb * cloud->n_memb * sizeof(mst_edges[0])); + int *mst_edges = xmalloc(cloud->n_memb * cloud->n_memb * sizeof(mst_edges[0])); pdeq *q; struct list_head changed;