diff options
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index ecaca42..f1a8459 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -244,7 +244,7 @@ bitmap_element_allocate (bitmap head) /* Inner list was just a singleton. */ bitmap_ggc_free = element->prev; else - element = ggc_alloc_bitmap_element_def (); + element = ggc_alloc_bitmap_element (); } if (GATHER_STATISTICS) @@ -370,7 +370,7 @@ bitmap_obstack_alloc_stat (bitmap_obstack *bit_obstack MEM_STAT_DECL) bit_obstack = &bitmap_default_obstack; map = bit_obstack->heads; if (map) - bit_obstack->heads = (struct bitmap_head_def *) map->first; + bit_obstack->heads = (struct bitmap_head *) map->first; else map = XOBNEW (&bit_obstack->obstack, bitmap_head); bitmap_initialize_stat (map, bit_obstack PASS_MEM_STAT); @@ -388,7 +388,7 @@ bitmap_gc_alloc_stat (ALONE_MEM_STAT_DECL) { bitmap map; - map = ggc_alloc_bitmap_head_def (); + map = ggc_alloc_bitmap_head (); bitmap_initialize_stat (map, NULL PASS_MEM_STAT); if (GATHER_STATISTICS) @@ -2207,13 +2207,13 @@ dump_bitmap_statistics (void) } DEBUG_FUNCTION void -debug (const bitmap_head_def &ref) +debug (const bitmap_head &ref) { dump_bitmap (stderr, &ref); } DEBUG_FUNCTION void -debug (const bitmap_head_def *ptr) +debug (const bitmap_head *ptr) { if (ptr) debug (*ptr); |