From fc1ef759866615690d7517691c98bb319b12bad3 Mon Sep 17 00:00:00 2001 From: meissner Date: Thu, 5 Jun 1997 20:35:53 +0000 Subject: Fix urgent bug git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14150 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/basic-block.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/basic-block.h') diff --git a/gcc/basic-block.h b/gcc/basic-block.h index a6b8cf9dc52..ce38672d17a 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -251,8 +251,8 @@ do { \ } while (0) /* Allocate a register set with oballoc. */ -#define OBALLOC_REG_SET() \ - ((regset) obstack_alloc (&flow_obstack, regset_bytes)) +#define OBSTACK_ALLOC_REG_SET(OBSTACK) \ + ((regset) obstack_alloc (OBSTACK, regset_bytes)) /* Allocate a register set with alloca. */ #define ALLOCA_REG_SET() ((regset) alloca (regset_bytes)) -- cgit v1.2.1