From: Michael Beck Date: Wed, 22 Mar 2006 14:30:55 +0000 (+0000) Subject: replaced malloc by xmalloc X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=1c94e9ecc0340be23c468c987b2f7ae3ac97ba47;p=libfirm replaced malloc by xmalloc --- diff --git a/ir/be/beifg_std.c b/ir/be/beifg_std.c index 6fe13610b..8a219c5cf 100644 --- a/ir/be/beifg_std.c +++ b/ir/be/beifg_std.c @@ -342,7 +342,7 @@ static const be_ifg_impl_t ifg_std_impl = { be_ifg_t *be_ifg_std_new(const be_chordal_env_t *env) { - ifg_std_t *ifg = malloc(sizeof(*ifg)); + ifg_std_t *ifg = xmalloc(sizeof(*ifg)); ifg->impl = &ifg_std_impl; ifg->env = env;