diff options
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/bitmap.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 54fe27c..1eaf99a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2004-11-25 Andrew Pinski <pinskia@physics.uc.edu> + * bitmap.h (BITMAP_XMALLOC): Use BITMAP_ALLOC and not + BITMAP_OBSTACK_ALLOC. + (BITMAP_XFREE): Use BITMAP_FREE and not BITMAP_OBSTACK_FREE. + +2004-11-25 Andrew Pinski <pinskia@physics.uc.edu> + parts of PR rtl-opt/18463, rtl-opt/17647 * cse.c (canon_for_address): New function. (find_best_addr): Call canon_for_address before getting the diff --git a/gcc/bitmap.h b/gcc/bitmap.h index a5531d9..beb59d8 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -160,14 +160,14 @@ extern unsigned bitmap_first_set_bit (bitmap); #define BITMAP_GGC_ALLOC() bitmap_gc_alloc () /* Allocate a bitmap with xmalloc. */ -#define BITMAP_XMALLOC() BITMAP_OBSTACK_ALLOC (NULL) +#define BITMAP_XMALLOC() BITMAP_ALLOC (NULL) /* Do any cleanup needed on a bitmap when it is no longer used. */ #define BITMAP_FREE(BITMAP) \ ((void)(bitmap_obstack_free (BITMAP), (BITMAP) = NULL)) /* Do any cleanup needed on an xmalloced bitmap when it is no longer used. */ -#define BITMAP_XFREE(BITMAP) BITMAP_OBSTACK_FREE (BITMAP) +#define BITMAP_XFREE(BITMAP) BITMAP_FREE (BITMAP) /* Iterator for bitmaps. */ |
