diff options
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |