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@gcc.gnu.org>2004-11-25 16:01:35 -0800
commit03c8e7dda7eb1b7e1e9794c3797701c0d55c85f7 (patch)
tree95acf0229043462de0fbcac42906c7733c91a7a8 /gcc/bitmap.h
parentb7ca416f49abaa58b45bad5be31b9e58cf306481 (diff)
downloadgcc-03c8e7dda7eb1b7e1e9794c3797701c0d55c85f7.zip
gcc-03c8e7dda7eb1b7e1e9794c3797701c0d55c85f7.tar.gz
gcc-03c8e7dda7eb1b7e1e9794c3797701c0d55c85f7.tar.bz2
bitmap.h (BITMAP_XMALLOC): Use BITMAP_ALLOC and not BITMAP_OBSTACK_ALLOC.
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. From-SVN: r91309
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 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. */