diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1998-07-02 13:49:34 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1998-07-02 13:49:34 +0000 |
commit | 6feacd095463d1215e8797639cabad6058f49e5c (patch) | |
tree | 07fac8f9725ba2a3a78cb899e4367fe27d91d686 /gcc/basic-block.h | |
parent | 39403d8233deb862fc951f95cd11280440c90880 (diff) | |
download | gcc-6feacd095463d1215e8797639cabad6058f49e5c.zip gcc-6feacd095463d1215e8797639cabad6058f49e5c.tar.gz gcc-6feacd095463d1215e8797639cabad6058f49e5c.tar.bz2 |
Switch reg_n_info structure to use varrays
From-SVN: r20894
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 d41c9ba..552f74a 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -1,5 +1,5 @@ /* Define control and data flow tables, and regsets. - Copyright (C) 1987, 1997 Free Software Foundation, Inc. + Copyright (C) 1987, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -132,7 +132,7 @@ extern regset regs_live_at_setjmp; #define REG_BLOCK_UNKNOWN -1 #define REG_BLOCK_GLOBAL -2 -#define REG_BASIC_BLOCK(N) (reg_n_info[(N)].basic_block) +#define REG_BASIC_BLOCK(N) (VARRAY_REG (reg_n_info, N)->basic_block) /* List of integers. These are used for storing things like predecessors, etc. |