aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2004-11-26 00:01:35 +0000
committerAndrew Pinski <pinskia@physics.uc.edu>2004-11-26 00:01:35 +0000
commit08697f9fed7e8cc558ea118ac49cf5d34ca06258 (patch)
tree95acf0229043462de0fbcac42906c7733c91a7a8 /gcc/bitmap.h
parent7376cb475e54778121aba155d0be93b3f37f24df (diff)
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: https://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. */