summaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-26 00:01:35 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-26 00:01:35 +0000
commit5c9adf2ab9dd71fd0b3f887c24789157cec496e7 (patch)
tree95acf0229043462de0fbcac42906c7733c91a7a8 /gcc/bitmap.h
parentf8b0709ba79094ffdfef9661520208a86aba7b08 (diff)
downloadgcc-5c9adf2ab9dd71fd0b3f887c24789157cec496e7.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91309 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index a5531d9b186..beb59d85f86 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. */