From: Michael Beck Date: Sun, 5 Mar 2006 01:19:41 +0000 (+0000) Subject: used xmalloc instead of malloc X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=07d33d22fcc65609a2c31c516604bda6e615bf72;p=libfirm used xmalloc instead of malloc [r7415] --- diff --git a/ir/adt/bitset.h b/ir/adt/bitset.h index ae9d8a485..ad920a840 100644 --- a/ir/adt/bitset.h +++ b/ir/adt/bitset.h @@ -109,7 +109,7 @@ static INLINE bitset_t *_bitset_mask_highest(bitset_t *bs) * @return A pointer to an empty initialized bitset. */ #define bitset_malloc(size) \ - _bitset_prepare(malloc(_bitset_overall_size(sizeof(bitset_t), size)), size) + _bitset_prepare(xmalloc(_bitset_overall_size(sizeof(bitset_t), size)), size) /** * Free a bitset allocated with bitset_malloc().