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/print-rtl.c | |
parent | 7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a (diff) | |
download | gcc-e087aeb2b9641000a819a86ef856f7c152f959f8.zip gcc-e087aeb2b9641000a819a86ef856f7c152f959f8.tar.gz gcc-e087aeb2b9641000a819a86ef856f7c152f959f8.tar.bz2 |
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/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index e52a410..ab19a16 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -42,7 +42,7 @@ Boston, MA 02111-1307, USA. */ static const char * const debug_reg_names[] = DEBUG_REGISTER_NAMES; #define reg_names debug_reg_names #else -const char * const reg_names[] = REGISTER_NAMES; +const char * reg_names[] = REGISTER_NAMES; #endif static FILE *outfile; |