From 1c94e9ecc0340be23c468c987b2f7ae3ac97ba47 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 22 Mar 2006 14:30:55 +0000 Subject: [PATCH] replaced malloc by xmalloc --- ir/be/beifg_std.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1