diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2007-08-10 17:53:58 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2007-08-10 17:53:58 +0000 |
commit | 68a57691dc5d712bff5c70691dd90c0c670022d0 (patch) | |
tree | 53bd7b9b59c9d1379b40355a4bdf1833b81d993b /gcc/c-lex.c | |
parent | df54b9ab94b46279d2af4977d8bdd4187151a5a7 (diff) | |
download | gcc-68a57691dc5d712bff5c70691dd90c0c670022d0.zip gcc-68a57691dc5d712bff5c70691dd90c0c670022d0.tar.gz gcc-68a57691dc5d712bff5c70691dd90c0c670022d0.tar.bz2 |
system.h (CONST_CAST): New.
* system.h (CONST_CAST): New.
* c-decl.c (c_make_fname_decl): Use it.
* c-lex.c (cb_ident, lex_string): Likewise.
* c-typeck.c (free_all_tagged_tu_seen_up_to): Likewise.
* gcc.c (set_spec, read_specs, for_each_path, execute, do_spec_1,
give_switch, set_multilib_dir): Likewise.
* gengtype-parse.c (string_seq, typedef_name): Likewise.
* passes.c (execute_one_pass): Likewise.
* prefix.c (update_path): Likewise.
* pretty-print.c (pp_base_destroy_prefix): Likewise.
* tree.c (build_string): Likewise.
cp:
* call.c (name_as_c_string): Use CONST_CAST.
* decl.c (build_decl): Likewise.
* parser.c (cp_parser_string_literal): Likewise.
fortran:
* gfortranspec.c (lang_specific_driver): Use CONST_CAST.
* options.c (gfc_post_options): Likewise.
* parse.c (parse_omp_structured_block): Likewise.
* st.c (gfc_free_statement): Likewise.
java:
* jcf-parse.c (read_class, java_parse_file): Use CONST_CAST.
* jcf.h (JCF_FINISH): Likewise.
From-SVN: r127344
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r-- | gcc/c-lex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c index 8dc2a1b..a4e3b0c 100644 --- a/gcc/c-lex.c +++ b/gcc/c-lex.c @@ -186,7 +186,7 @@ cb_ident (cpp_reader * ARG_UNUSED (pfile), if (cpp_interpret_string (pfile, str, 1, &cstr, false)) { ASM_OUTPUT_IDENT (asm_out_file, (const char *) cstr.text); - free ((void *) cstr.text); + free (CONST_CAST (cstr.text)); } } #endif @@ -811,7 +811,7 @@ lex_string (const cpp_token *tok, tree *valp, bool objc_string) (parse_in, strs, concats + 1, &istr, wide)) { value = build_string (istr.len, (const char *) istr.text); - free ((void *) istr.text); + free (CONST_CAST (istr.text)); if (c_lex_string_translate == -1) { @@ -832,7 +832,7 @@ lex_string (const cpp_token *tok, tree *valp, bool objc_string) *valp = build_string (istr.len, (const char *) istr.text); valp = &TREE_CHAIN (*valp); } - free ((void *) istr.text); + free (CONST_CAST (istr.text)); } } else |