From 33b57a7b900686a43c4535b428313b9fe2b401df Mon Sep 17 00:00:00 2001 From: ghazi Date: Thu, 27 Dec 2001 03:35:21 +0000 Subject: * collect2.c (is_ctor_dtor): Const-ify. * m88k-protos.c (output_file_start): Likewise. * m88k.c (m88k_lang_independent_options, output_options, output_file_start): Likewise. * fix-header.c (files_to_ignore, std_include_entry, include_entry, std_include_table, main): Likewise. * protoize.c (longopts): Likewise. * regclass.c (int_reg_class_contents): Likewise. * toplev.c (dump_file, f_options, W_options): Make static. (lang_independent_options, f_options, W_options): Const-ify. * tree-dump.c (dump_file_info): Likewise. * unroll.c (_factor): Make static. java: * chartables.h: Const-ify. * gjavah.c (options): Likewise. * jcf-dump.c (options): Likewise. * jv-scan.c (options): Likewise. * lex.c (java_start_char_p, java_part_char_p): Likewise. * parse.y (binop_lookup): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48322 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-dump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree-dump.c') diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index 91d6e714c55..fe520793668 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -785,8 +785,8 @@ dump_node (t, flags, stream) /* Define a tree dump switch. */ struct dump_file_info { - const char *suffix; /* suffix to give output file. */ - const char *swtch; /* command line switch */ + const char *const suffix; /* suffix to give output file. */ + const char *const swtch; /* command line switch */ int flags; /* user flags */ int state; /* state of play */ }; -- cgit v1.2.3