diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-26 00:12:56 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-26 00:12:56 +0000 |
commit | f7f3687cd07233d61a39999aeef414ef02b4d936 (patch) | |
tree | 1e79b077c85c12fc7ecd80c8be070e0eb0189618 /gcc/statistics.c | |
parent | 246e177f0e6c026ff357eb6ed9e8459943b15fc4 (diff) | |
download | gcc-f7f3687cd07233d61a39999aeef414ef02b4d936.tar.gz |
* ra.h (add_neighbor): Fix -Wc++-compat and/or -Wcast-qual
warnings.
* recog.c (check_asm_operands, validate_change_1): Likewise.
* reg-stack.c (check_asm_stack_operands, subst_asm_stack_regs,
subst_asm_stack_regs): Likewise.
* regclass.c (regclass, som_hash, som_eq, record_subregs_of_mode,
cannot_change_mode_set_regs, invalid_mode_change_p): Likewise.
* regmove.c (reg_is_remote_constant_p): Likewise.
* regrename.c (regrename_optimize, scan_rtx_reg,
kill_clobbered_value, kill_set_value, kill_autoinc_value):
Likewise.
* regstat.c (regstat_init_n_sets_and_refs, regstat_compute_ri,
regstat_compute_calls_crossed): Likewise.
* reload1.c (init_reload, new_insn_chain,
has_nonexceptional_receiver, reload, copy_reloads,
calculate_needs_all_insns, init_elim_table): Likewise.
* rtl-factoring.c (compute_rtx_cost, fill_hash_bucket): Likewise.
* rtl.c (shallow_copy_rtx_stat): Likewise.
* rtlanal.c (parms_set): Likewise.
* sbitmap.c (sbitmap_alloc, sbitmap_alloc_with_popcount,
sbitmap_resize, sbitmap_vector_alloc): Likewise.
* sched-ebb.c (earliest_block_with_similiar_load,
add_deps_for_risky_insns): Likewise.
* sched-rgn.c (find_rgns, gather_region_statistics, extend_rgns,
schedule_region): Likewise.
* see.c (eq_descriptor_pre_extension,
hash_descriptor_pre_extension, hash_del_pre_extension,
eq_descriptor_properties, hash_descriptor_properties,
hash_del_properties, see_seek_pre_extension_expr,
see_initialize_data_structures, see_print_register_properties,
see_print_pre_extension_expr, see_delete_merged_def_extension,
see_delete_unmerged_def_extension, see_emit_use_extension,
see_pre_delete_extension, see_map_extension, see_commit_changes,
see_analyze_merged_def_local_prop,
see_analyze_merged_def_local_prop,
see_analyze_unmerged_def_local_prop, see_analyze_use_local_prop,
see_set_prop_merged_def, see_set_prop_unmerged_def,
see_set_prop_unmerged_use, see_print_one_extension,
see_merge_one_use_extension, see_merge_one_def_extension,
see_store_reference_and_extension, see_update_uses_relevancy,
see_update_defs_relevancy): Likewise.
* statistics.c (hash_statistics_hash, hash_statistics_eq,
hash_statistics_free, curr_statistics_hash): Likewise.
* stmt.c (parse_output_constraint, decl_overlaps_hard_reg_set_p,
expand_asm_operands, expand_return, case_bit_test_cmp,
expand_case): Likewise.
* stor-layout.c (start_record_layout): Likewise.
* stringpool.c (ggc_alloc_string, gt_pch_n_S,
gt_pch_save_stringpool): Likewise.
* tree-data-ref.c (hash_stmt_vertex_info,
have_similar_memory_accesses_1, ref_base_address_1): Likewise.
* tree-ssa-phiopt.c (name_to_bb_hash): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137128 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/statistics.c')
-rw-r--r-- | gcc/statistics.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/statistics.c b/gcc/statistics.c index 1f0090c7e7b..d2f665f3b20 100644 --- a/gcc/statistics.c +++ b/gcc/statistics.c @@ -53,7 +53,7 @@ static unsigned nr_statistics_hashes; static hashval_t hash_statistics_hash (const void *p) { - statistics_counter_t *c = (statistics_counter_t *)p; + const statistics_counter_t *const c = (const statistics_counter_t *)p; return htab_hash_string (c->id) + c->val; } @@ -62,8 +62,8 @@ hash_statistics_hash (const void *p) static int hash_statistics_eq (const void *p, const void *q) { - statistics_counter_t *c1 = (statistics_counter_t *)p; - statistics_counter_t *c2 = (statistics_counter_t *)q; + const statistics_counter_t *const c1 = (const statistics_counter_t *)p; + const statistics_counter_t *const c2 = (const statistics_counter_t *)q; return c1->val == c2->val && strcmp (c1->id, c2->id) == 0; } @@ -72,7 +72,7 @@ hash_statistics_eq (const void *p, const void *q) static void hash_statistics_free (void *p) { - free ((void *)((statistics_counter_t *)p)->id); + free (CONST_CAST(char *, ((statistics_counter_t *)p)->id)); free (p); } @@ -90,8 +90,7 @@ curr_statistics_hash (void) if (idx >= nr_statistics_hashes) { - statistics_hashes = xrealloc (statistics_hashes, - (idx + 1) * sizeof (htab_t)); + statistics_hashes = XRESIZEVEC (struct htab *, statistics_hashes, idx+1); memset (statistics_hashes + nr_statistics_hashes, 0, (idx + 1 - nr_statistics_hashes) * sizeof (htab_t)); nr_statistics_hashes = idx + 1; |