replaced malloc by xmalloc
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 22 Mar 2006 14:30:55 +0000 (14:30 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 22 Mar 2006 14:30:55 +0000 (14:30 +0000)
ir/be/beifg_std.c

index 6fe1361..8a219c5 100644 (file)
@@ -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;