aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
diff options
context:
space:
mode:
authorBernardo Innocenti <bernie@develer.com>2004-07-25 22:43:23 +0200
committerBernardo Innocenti <bernie@gcc.gnu.org>2004-07-25 22:43:23 +0200
commit5d038c4cb11480bb8ee68bdc71846a0abfe11f02 (patch)
treed0ebdb183f6e1572fbcf9e7c4fd5488f5016e704 /gcc/bitmap.c
parentb12a648242a3b58bfa7a3e2d24c9f7404ab35df0 (diff)
downloadgcc-5d038c4cb11480bb8ee68bdc71846a0abfe11f02.zip
gcc-5d038c4cb11480bb8ee68bdc71846a0abfe11f02.tar.gz
gcc-5d038c4cb11480bb8ee68bdc71846a0abfe11f02.tar.bz2
bitmap.c: Use type-safe memory allocation macros from libiberty.
* bitmap.c: Use type-safe memory allocation macros from libiberty. * c-common.c: Likewise. * c-decl.c: Likewise. * c-lang.c: Likewise. * c-lex.c: Likewise. * c-opts.c: Likewise. * c-parse.in: Likewise. * c-typeck.c: Likewise. * genconditions.c: Likewise. * gengtype-lex.l: Likewise. * gengtype-yacc.y: Likewise. * gengtype.c: Likewise. * genmodes.c: Likewise. * gensupport.c: Likewise. * read-rtl.c: Likewise. * read-rtl.c (read_constants): Use INSERT instead of TRUE in call to htab_find_slot(). From-SVN: r85163
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r--gcc/bitmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index ebbb6ee..2f4769b 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -131,7 +131,7 @@ bitmap_element_allocate (bitmap head)
obstack_chunk_free);
}
- element = obstack_alloc (&bitmap_obstack, sizeof (bitmap_element));
+ element = XOBNEW (&bitmap_obstack, bitmap_element);
}
}
else
@@ -142,7 +142,7 @@ bitmap_element_allocate (bitmap head)
bitmap_ggc_free = element->next;
}
else
- element = ggc_alloc (sizeof (bitmap_element));
+ element = GGC_NEW (bitmap_element);
}
memset (element->bits, 0, sizeof (element->bits));
@@ -716,7 +716,7 @@ bitmap
bitmap_initialize (bitmap head, int using_obstack)
{
if (head == NULL && ! using_obstack)
- head = ggc_alloc (sizeof (*head));
+ head = GGC_NEW (struct bitmap_head_def);
head->first = head->current = 0;
head->using_obstack = using_obstack;