aboutsummaryrefslogtreecommitdiff
path: root/gcc/basic-block.h
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2000-03-05 22:35:27 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2000-03-05 22:35:27 +0000
commitee25a7a5f655464616cfb7faafb0d434f8174d92 (patch)
tree446e504da7f74a87b0b65d998b5b7fd43cb89914 /gcc/basic-block.h
parent008b7307cbdb0f150ff8f19aae2d39fc675e6bae (diff)
downloadgcc-ee25a7a5f655464616cfb7faafb0d434f8174d92.zip
gcc-ee25a7a5f655464616cfb7faafb0d434f8174d92.tar.gz
gcc-ee25a7a5f655464616cfb7faafb0d434f8174d92.tar.bz2
basic-block.h (ALLOCA_REG_SET): Remove.
* basic-block.h (ALLOCA_REG_SET): Remove. (INITIALIZE_REG_SET): New macro. * flow.c (update_life_info): Use it. (calculate_global_regs_live): Likewise. (propagate_block): Likewise. * global.c (build_insn_chain): Likewise. * haifa-sched.c (schedule_region): Likewise. From-SVN: r32350
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 50cc28e..0aef32b 100644
--- a/gcc/basic-block.h
+++ b/gcc/basic-block.h
@@ -98,8 +98,8 @@ do { \
/* Allocate a register set with oballoc. */
#define OBSTACK_ALLOC_REG_SET(OBSTACK) BITMAP_OBSTACK_ALLOC (OBSTACK)
-/* Allocate a register set with alloca. */
-#define ALLOCA_REG_SET() BITMAP_ALLOCA ()
+/* Initialize a register set. Returns the new register set. */
+#define INITIALIZE_REG_SET(HEAD) bitmap_initialize (&HEAD)
/* Do any cleanup needed on a regset when it is no longer used. */
#define FREE_REG_SET(REGSET) BITMAP_FREE(REGSET)