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

index 0da731f..55cc651 100644 (file)
@@ -148,7 +148,7 @@ be_uses_t *be_begin_uses(
     const arch_env_t *arch_env,
     const arch_register_class_t *cls)
 {
-  be_uses_t *uses = malloc(sizeof(uses[0]));
+  be_uses_t *uses = xmalloc(sizeof(uses[0]));
 
   edges_assure(irg);