aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2012-08-22 11:19:39 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2012-08-22 11:19:39 +0200
commit6f723d3319d8a656079b0509be4a249c0fbd955c (patch)
tree98675a15894bfa9e3293f468a5a660c709083407 /gcc/tree-inline.c
parent06d43afd8592777cbc11e78a8b7667fda6c1eace (diff)
downloadgcc-6f723d3319d8a656079b0509be4a249c0fbd955c.zip
gcc-6f723d3319d8a656079b0509be4a249c0fbd955c.tar.gz
gcc-6f723d3319d8a656079b0509be4a249c0fbd955c.tar.bz2
tree-vrp.c (find_assert_locations): Skip also edges from the entry block.
* tree-vrp.c (find_assert_locations): Skip also edges from the entry block. * tree-vect-loop-manip.c (slpeel_make_loop_iterate_ntimes): Call free_stmt_vec_info on orig_cond after gsi_removing it. * tree-vect-data-refs.c (vect_enhance_data_refs_alignment): Always free body_cost_vec vector. (vect_analyze_data_refs): If gather is unsuccessful, free_data_ref (dr). * tree-inline.c (tree_function_versioning): Free old_transforms_to_apply vector. From-SVN: r190590
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index fe46e5d..20d3317 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -5089,6 +5089,7 @@ tree_function_versioning (tree old_decl, tree new_decl,
VEC_index (ipa_opt_pass,
old_transforms_to_apply,
i));
+ VEC_free (ipa_opt_pass, heap, old_transforms_to_apply);
}
id.copy_decl = copy_decl_no_change;