diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-12 22:21:04 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-12 22:21:04 +0000 |
commit | d05c8ee724cf69f6df37ce537299e6c2f60f365b (patch) | |
tree | 0a382ac68d8051d96a1f3c076c1900687f08f95f | |
parent | 981661494522a10d35c902192629f28189372773 (diff) | |
download | gcc-d05c8ee724cf69f6df37ce537299e6c2f60f365b.zip gcc-d05c8ee724cf69f6df37ce537299e6c2f60f365b.tar.gz gcc-d05c8ee724cf69f6df37ce537299e6c2f60f365b.tar.bz2 |
(reg_names): Reinstate the definition here.
From-SVN: r2415
-rw-r--r-- | gcc/regclass.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/regclass.c b/gcc/regclass.c index 6570dda..76b87e7 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -147,6 +147,10 @@ enum reg_class reg_class_subunion[N_REG_CLASSES][N_REG_CLASSES]; enum reg_class reg_class_superunion[N_REG_CLASSES][N_REG_CLASSES]; +/* Array containing all of the register names */ + +char *reg_names[] = REGISTER_NAMES; + /* Indexed by n, gives number of times (REG n) is set or clobbered. This information remains valid for the rest of the compilation of the current function; it is used to control register allocation. |