aboutsummaryrefslogtreecommitdiff
path: root/gcc/basic-block.h
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-11-25 10:31:38 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2004-11-25 10:31:38 +0000
commitcc175e7c89539b0b55ef73c0ba9c7a6e062cc0d4 (patch)
tree60167593bb07447210914ff3d3ea5ed5f3a01a6a /gcc/basic-block.h
parentd0397fd9704cffd78f00ba2f74add6a46a4c3044 (diff)
downloadgcc-cc175e7c89539b0b55ef73c0ba9c7a6e062cc0d4.zip
gcc-cc175e7c89539b0b55ef73c0ba9c7a6e062cc0d4.tar.gz
gcc-cc175e7c89539b0b55ef73c0ba9c7a6e062cc0d4.tar.bz2
basic-block.h (OBSTACK_ALLOC_REG_SET): Adjust.
* basic-block.h (OBSTACK_ALLOC_REG_SET): Adjust. (FREE_REG_SET): Adjust. * bitmap.c (bitmap_obstack_free): Cope with NULL bitmap. * bitmap.h (BITMAP_OBSTACK_ALLOC): Rename to ... (BITMAP_ALLOC): ... here. (BITMAP_OBSTACK_FREE): Rename to ... (BITMAP_FREE): Don't check for NULL bitmap here. * tree-ssa-pre.c (value_insert_into_set_bitmap, bitmap_set_new): Use new names. From-SVN: r91281
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r--gcc/basic-block.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h
index 277888b..0a3f2e0 100644
--- a/gcc/basic-block.h
+++ b/gcc/basic-block.h
@@ -38,10 +38,10 @@ typedef bitmap_head regset_head;
typedef bitmap regset;
/* Allocate a register set with oballoc. */
-#define ALLOC_REG_SET(OBSTACK) BITMAP_OBSTACK_ALLOC (OBSTACK)
+#define ALLOC_REG_SET(OBSTACK) BITMAP_ALLOC (OBSTACK)
/* Do any cleanup needed on a regset when it is no longer used. */
-#define FREE_REG_SET(REGSET) BITMAP_OBSTACK_FREE (REGSET)
+#define FREE_REG_SET(REGSET) BITMAP_FREE (REGSET)
/* Initialize a new regset. */
#define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, &reg_obstack)