diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-10-12 22:21:04 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-10-12 22:21:04 +0000 |
commit | 6fe96decd49ed4551544729f136a0937f0a53ec3 (patch) | |
tree | 0a382ac68d8051d96a1f3c076c1900687f08f95f /gcc/regclass.c | |
parent | 92102c7df2a2b76d173a9b98496f50fba469d302 (diff) | |
download | gcc-6fe96decd49ed4551544729f136a0937f0a53ec3.tar.gz |
(reg_names): Reinstate the definition here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@2415 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regclass.c')
-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 6570dda7e7a..76b87e79325 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. |