summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/tree-predcom.c2
-rw-r--r--gcc/tree-vect-loop.c2
3 files changed, 11 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c04f5cb90a0..608f8d6f6b8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2012-08-22 Jakub Jelinek <jakub@redhat.com>
+
+ * tree-vect-loop.c (vect_transform_loop): Initialize
+ check_profitability to false.
+
+ * tree-predcom.c (try_combine_chains): Free the worklist vector
+ at the end.
+
2012-08-22 Marc Glisse <marc.glisse@inria.fr>
PR tree-optimization/54317
diff --git a/gcc/tree-predcom.c b/gcc/tree-predcom.c
index b13300c4d11..684a57a23b3 100644
--- a/gcc/tree-predcom.c
+++ b/gcc/tree-predcom.c
@@ -2331,6 +2331,8 @@ try_combine_chains (VEC (chain_p, heap) **chains)
}
}
}
+
+ VEC_free (chain_p, heap, worklist);
}
/* Prepare initializers for CHAIN in LOOP. Returns false if this is
diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c
index 67d0eb17d13..728bc0f09c3 100644
--- a/gcc/tree-vect-loop.c
+++ b/gcc/tree-vect-loop.c
@@ -5277,7 +5277,7 @@ vect_transform_loop (loop_vec_info loop_vinfo)
gimple_seq pattern_def_seq = NULL;
gimple_stmt_iterator pattern_def_si = gsi_none ();
bool transform_pattern_stmt = false;
- bool check_profitability;
+ bool check_profitability = false;
int th;
if (vect_print_dump_info (REPORT_DETAILS))