diff options
author | Richard Henderson <rth@cygnus.com> | 2000-05-27 20:24:57 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-05-27 20:24:57 -0700 |
commit | e087aeb2b9641000a819a86ef856f7c152f959f8 (patch) | |
tree | 549befca836ef89bd417e0e4640d00e98181120c /gcc/regs.h | |
parent | 7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a (diff) | |
download | gcc-e087aeb2b9641000a819a86ef856f7c152f959f8.tar.gz |
print-rtl.c (reg_names): Remove const.
* print-rtl.c (reg_names): Remove const.
* regclass.c (reg_names): Likewise.
* regs.h (reg_names): Likewise.
* hard-reg-set.h (reg_names): Likewise.
From-SVN: r34225
Diffstat (limited to 'gcc/regs.h')
-rw-r--r-- | gcc/regs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/regs.h b/gcc/regs.h index 0f35ae66c8b..9c1b886d864 100644 --- a/gcc/regs.h +++ b/gcc/regs.h @@ -137,7 +137,7 @@ extern char regs_ever_live[FIRST_PSEUDO_REGISTER]; /* Vector indexed by hardware reg giving its name. */ -extern const char * const reg_names[FIRST_PSEUDO_REGISTER]; +extern const char * reg_names[FIRST_PSEUDO_REGISTER]; /* For each hard register, the widest mode object that it can contain. This will be a MODE_INT mode if the register can hold integers. Otherwise |