diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-28 03:24:57 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-05-28 03:24:57 +0000 |
commit | da0930baf73e99d285bebb769a19715d543b23d8 (patch) | |
tree | 549befca836ef89bd417e0e4640d00e98181120c /gcc/print-rtl.c | |
parent | c1b306c760443e49d32e3a95e04e33ff58dea03a (diff) | |
download | gcc-da0930baf73e99d285bebb769a19715d543b23d8.tar.gz |
* print-rtl.c (reg_names): Remove const.
* regclass.c (reg_names): Likewise.
* regs.h (reg_names): Likewise.
* hard-reg-set.h (reg_names): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34225 138bc75d-0d04-0410-961f-82ee72b054a4
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 e52a41065bb..ab19a16343c 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; |