diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-01-20 12:30:05 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2010-01-20 12:30:05 +0100 |
commit | 1124098bb22cbd60a4cdc18062ea81a79a1e8468 (patch) | |
tree | 259c71279a44a29f881a32db911e94525a7fe98c /gcc/graphite-clast-to-gimple.c | |
parent | 83a5ef25d3fcf70ca677a6bfe2e94a1302ab7f1a (diff) | |
download | gcc-1124098bb22cbd60a4cdc18062ea81a79a1e8468.zip gcc-1124098bb22cbd60a4cdc18062ea81a79a1e8468.tar.gz gcc-1124098bb22cbd60a4cdc18062ea81a79a1e8468.tar.bz2 |
sel-sched.c (create_speculation_check): Remove set but not used variable twin.
* sel-sched.c (create_speculation_check): Remove set but not used
variable twin.
(try_transformation_cache): Remove set but not used variable ds.
(calculate_privileged_insns): Remove set but not used variables
cur_insn and min_spec_insn.
(find_best_expr): Remove set but not used variable avail_n.
* tree-predcom.c (base_names_in_chain_on): Remove set but not used
variable e.
* cgraphunit.c (assemble_thunk): Remove set but not used variable
false_label.
* haifa-sched.c (remove_notes): Remove set but not used variable prev.
* graphite-clast-to-gimple.c (gloog): Remove set but not used variable
new_scop_exit_edge.
* decl.c (create_array_type_for_decl): Remove set but not used
variable error_msg. Remove break stmts after return stmts.
From-SVN: r156072
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 6651e95..cc48859 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -1430,7 +1430,6 @@ create_params_index (htab_t index_table, CloogProgram *prog) { bool gloog (scop_p scop, htab_t bb_pbb_mapping) { - edge new_scop_exit_edge = NULL; VEC (tree, heap) *newivs = VEC_alloc (tree, heap, 10); loop_p context_loop; sese region = SCOP_REGION (scop); @@ -1471,10 +1470,10 @@ gloog (scop_p scop, htab_t bb_pbb_mapping) create_params_index (params_index, pc.prog); - new_scop_exit_edge = translate_clast (region, context_loop, pc.stmt, - if_region->true_region->entry, - rename_map, &newivs, newivs_index, - bb_pbb_mapping, 1, params_index); + translate_clast (region, context_loop, pc.stmt, + if_region->true_region->entry, + rename_map, &newivs, newivs_index, + bb_pbb_mapping, 1, params_index); graphite_verify (); sese_adjust_liveout_phis (region, rename_map, if_region->region->exit->src, |