diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-19 04:08:32 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-19 04:08:32 +0000 |
commit | 86c1585a0b5021e5010158be36933f5e13bd955e (patch) | |
tree | 6dbb8cbe0b281c1de8f2264e4a111ada8e550d69 /gcc/tree-into-ssa.c | |
parent | 28982d9410803f5885d6ae4dbd16e1562b21abd2 (diff) | |
download | gcc-86c1585a0b5021e5010158be36933f5e13bd955e.tar.gz |
* bt-load.c (link_btr_uses): Fix uninitialised warnings.
* cfganal.c (find_edge_index): Ditto.
* combine.c (combine_instructions): Ditto.
* ddg.c (create_scc): Ditto.
(find_successors): Ditto.
(find_predecessors): Ditto.
(find_nodes_on_paths): Ditto.
(longest_simple_path): Ditto.
* flow.c (update_life_info): Ditto.
(count_or_remove_death_notes): Ditto.
(clear_log_links): Ditto.
* modulo-sched.c (generate_reg_moves): Ditto.
(find_max_asap): Ditto.
(find_max_hv_min_mob): Ditto.
(find_max_dv_min_mob): Ditto.
* sbitmap.c (sbitmap_first_set_bit): Ditto.
* sched-rgn.c (extract_edgelst): Ditto.
* tree-into-ssa.c (prepare_names_to_update): Ditto.
(dump_update_ssa): Ditto.
(ssa_names_to_replace) Ditto.
(switch_virtuals_to_full_rewrite): Ditto.
(update_ssa): Ditto.
* tree-vect-transform.c (vect_create_epilog_for_reduction): Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102151 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r-- | gcc/tree-into-ssa.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 02e587669d9..5885c04e682 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -2031,7 +2031,7 @@ prepare_def_site_for (tree name, bitmap blocks, bool insert_phi_p) static void prepare_names_to_update (bitmap blocks, bool insert_phi_p) { - unsigned i; + unsigned i = 0; bitmap_iterator bi; sbitmap_iterator sbi; @@ -2098,7 +2098,7 @@ debug_names_replaced_by (tree name) void dump_update_ssa (FILE *file) { - unsigned i; + unsigned i = 0; bitmap_iterator bi; if (!need_ssa_update_p ()) @@ -2347,7 +2347,7 @@ name_registered_for_update_p (tree n) bitmap ssa_names_to_replace (void) { - unsigned i; + unsigned i = 0; bitmap ret; sbitmap_iterator sbi; @@ -2519,7 +2519,7 @@ switch_virtuals_to_full_rewrite_p (void) static void switch_virtuals_to_full_rewrite (void) { - unsigned i; + unsigned i = 0; sbitmap_iterator sbi; if (dump_file) @@ -2618,7 +2618,7 @@ update_ssa (unsigned update_flags) bitmap blocks; basic_block bb, start_bb; bitmap_iterator bi; - unsigned i; + unsigned i = 0; sbitmap tmp; bool insert_phi_p; sbitmap_iterator sbi; |