diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-03-06 05:34:26 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-03-06 05:34:26 +0000 |
commit | dff01034e5a90c29e68d9aa436cbef7ef2268035 (patch) | |
tree | c772c985a70004b9455673e66fda09916b427de1 /gcc/gcse.c | |
parent | 3c2a0097066b2f122d4ae0a70bde6e8f1721081a (diff) | |
download | gcc-dff01034e5a90c29e68d9aa436cbef7ef2268035.zip gcc-dff01034e5a90c29e68d9aa436cbef7ef2268035.tar.gz gcc-dff01034e5a90c29e68d9aa436cbef7ef2268035.tar.bz2 |
c-aux-info.c (data_type, [...]): Qualify a char* with the `const' keyword.
* c-aux-info.c (data_type, affix_data_type, gen_decl,
gen_formal_list_for_type, gen_formal_list_for_func_def, gen_type):
Qualify a char* with the `const' keyword.
* c-common.c (declare_hidden_char_array, add_attribute, if_elt,
declare_function_name, decl_attributes, format_char_info,
check_format_info, binary_op_error): Likewise.
* cexp.y (yyerror, error, pedwarn, warning, token): Likewise.
* gcse.c (dump_hash_table): Likewise.
* integrate.c (function_cannot_inline_p): Likewise
* optabs.c: Include insn-config.h earlier.
(init_libfuncs, init_integral_libfuncs, init_floating_libfuncs):
Qualify a char* with the `const' keyword.
* real.c (asctoe24, asctoe53, asctoe64, asctoe113, asctoe,
asctoeg, mtherr, ereal_atof): Likewise.
* real.h (ereal_atof): Likewise.
* sbitmap.c (dump_sbitmap_vector): Likewise.
* sbitmap.h (dump_sbitmap_vector): Likewise.
* stmt.c (nesting, n_occurrences, expand_start_case): Likewise.
* toplev.c (rest_of_compilation): Likewise.
* tree.h (function_cannot_inline_p, expand_start_case): Likewise.
From-SVN: r25614
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -576,7 +576,7 @@ static void compute_set_hash_table PROTO ((rtx)); static void alloc_expr_hash_table PROTO ((int)); static void free_expr_hash_table PROTO ((void)); static void compute_expr_hash_table PROTO ((rtx)); -static void dump_hash_table PROTO ((FILE *, char *, struct expr **, int, int)); +static void dump_hash_table PROTO ((FILE *, const char *, struct expr **, int, int)); static struct expr *lookup_expr PROTO ((rtx)); static struct expr *lookup_set PROTO ((int, rtx)); static struct expr *next_set PROTO ((int, struct expr *)); @@ -1910,7 +1910,7 @@ hash_scan_insn (insn, set_p, in_libcall_block) static void dump_hash_table (file, name, table, table_size, total_size) FILE *file; - char *name; + const char *name; struct expr **table; int table_size, total_size; { |